[skip ci] Add etcd health check for docker compose deployments (#5930)

Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
pull/5925/head^2
quicksilver 2021-06-21 16:52:05 +08:00 committed by GitHub
parent 45dade553d
commit f8a391aa4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -4,7 +4,12 @@ services:
etcd:
container_name: milvus-etcd
image: quay.io/coreos/etcd:latest
command: etcd -listen-peer-urls=http://127.0.0.1:2380 -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 -initial-advertise-peer-urls=http://127.0.0.1:2380 --initial-cluster default=http://127.0.0.1:2380
command: etcd -listen-peer-urls=http://127.0.0.1:2380 -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 -initial-advertise-peer-urls=http://127.0.0.1:2380 --listen-metrics-urls=http://127.0.0.1:2381 --initial-cluster default=http://127.0.0.1:2380
healthcheck:
test: ["CMD", "wget", "-q", "--tries=1", "--spider", "http://localhost:2381/health"]
interval: 30s
timeout: 20s
retries: 3
networks:
- milvus

View File

@ -4,7 +4,12 @@ services:
etcd:
container_name: milvus-etcd
image: quay.io/coreos/etcd:latest
command: etcd -listen-peer-urls=http://127.0.0.1:2380 -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 -initial-advertise-peer-urls=http://127.0.0.1:2380 --initial-cluster default=http://127.0.0.1:2380
command: etcd -listen-peer-urls=http://127.0.0.1:2380 -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 -initial-advertise-peer-urls=http://127.0.0.1:2380 --listen-metrics-urls=http://127.0.0.1:2381 --initial-cluster default=http://127.0.0.1:2380
healthcheck:
test: ["CMD", "wget", "-q", "--tries=1", "--spider", "http://localhost:2381/health"]
interval: 30s
timeout: 20s
retries: 3
networks:
- milvus