update apisix
This commit is contained in:
parent
7097432af3
commit
8c5f613b86
|
@ -40,7 +40,7 @@ deployment:
|
||||||
|
|
||||||
etcd:
|
etcd:
|
||||||
host: # it's possible to define multiple etcd hosts addresses of the same etcd cluster.
|
host: # it's possible to define multiple etcd hosts addresses of the same etcd cluster.
|
||||||
- "http://etcd:2379" # multiple etcd address
|
- "http://127.0.0.1:2379" # multiple etcd address
|
||||||
prefix: "/apisix" # apisix configurations prefix
|
prefix: "/apisix" # apisix configurations prefix
|
||||||
timeout: 30 # 30 seconds
|
timeout: 30 # 30 seconds
|
||||||
health_check_retry: 2 # etcd retry time that only affects the health check, default 2
|
health_check_retry: 2 # etcd retry time that only affects the health check, default 2
|
||||||
|
|
|
@ -71,13 +71,12 @@ services:
|
||||||
|
|
||||||
etcd:
|
etcd:
|
||||||
image: bitnami/etcd:latest
|
image: bitnami/etcd:latest
|
||||||
hostname: 'etcd'
|
|
||||||
volumes:
|
volumes:
|
||||||
- etcd_data:/bitnami/etcd
|
- etcd_data:/bitnami/etcd
|
||||||
environment:
|
environment:
|
||||||
ETCD_ENABLE_V2: "true"
|
ETCD_ENABLE_V2: "true"
|
||||||
ALLOW_NONE_AUTHENTICATION: "yes"
|
ALLOW_NONE_AUTHENTICATION: "yes"
|
||||||
ETCD_ADVERTISE_CLIENT_URLS: "http://etcd:2379"
|
ETCD_ADVERTISE_CLIENT_URLS: "http://127.0.0.1:2379"
|
||||||
ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
|
ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
|
||||||
ports:
|
ports:
|
||||||
- "2379:2379/tcp"
|
- "2379:2379/tcp"
|
||||||
|
|
Loading…
Reference in New Issue