Notice
Recent Posts
Recent Comments
Link
devops
Constraint ${attr.consul.version} semver >= 1.8.0 1 nodes excluded by filter 에러 해결 방법 본문
DevOps/Nomad x Consul
Constraint ${attr.consul.version} semver >= 1.8.0 1 nodes excluded by filter 에러 해결 방법
vataops 2024. 6. 8. 15:54반응형
service block은 port와 health check 등 job의 네트워크 서비스 디스커버리 및 헬스체크에 사용되는 것으로 provider의 기본 default값이 consul로 되어있다.
그래서 nomad를 consul과 통합하여 사용하지 않는다면 아래와 같이 service의 provider에 nomad를 지정할 필요가 있다.
service {
name = "arbitrum-one"
port = "http"
tags = ["http"]
provider = "nomad"
check {
type = "tcp"
port = "http"
interval = "10s"
timeout = "2s"
}
}
반응형
'DevOps > Nomad x Consul' 카테고리의 다른 글
Nomad 베어메탈 서버에 Arbitrum full node 컨테이너로 배포하기 (4) | 2024.06.08 |
---|---|
Hashicorp Nomad Scheduling (0) | 2024.06.06 |
Comments