Add KV store providers (dynamic configuration only)
Co-authored-by: Jean-Baptiste Doumenjou <jb.doumenjou@gmail.com>
This commit is contained in:
parent
028683666d
commit
9b9f4be6a4
61 changed files with 5825 additions and 70 deletions
4
integration/resources/compose/consul.yml
Normal file
4
integration/resources/compose/consul.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
consul:
|
||||
image: consul:1.6
|
||||
ports:
|
||||
- "8500:8500"
|
5
integration/resources/compose/etcd.yml
Normal file
5
integration/resources/compose/etcd.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
etcd:
|
||||
image: quay.io/coreos/etcd:v3.3.18
|
||||
command: etcd --listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2380
|
||||
ports:
|
||||
- "2379:2379"
|
4
integration/resources/compose/redis.yml
Normal file
4
integration/resources/compose/redis.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
redis:
|
||||
image: redis:5.0
|
||||
ports:
|
||||
- "6379:6379"
|
4
integration/resources/compose/zookeeper.yml
Normal file
4
integration/resources/compose/zookeeper.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
zookeeper:
|
||||
image: zookeeper:3.5
|
||||
ports:
|
||||
- "2181:2181"
|
Loading…
Add table
Add a link
Reference in a new issue