mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Commit adds docker bits to run functional tester within containers. requires: - docker 1.9 (networking) - docker-compose
29 lines
477 B
YAML
29 lines
477 B
YAML
# build according provided Dockerfile
|
|
a1:
|
|
build: .
|
|
privileged: true
|
|
net: etcd-functional
|
|
a2:
|
|
build: .
|
|
privileged: true
|
|
net: etcd-functional
|
|
a3:
|
|
build: .
|
|
privileged: true
|
|
net: etcd-functional
|
|
tester:
|
|
build: .
|
|
privileged: true
|
|
net: etcd-functional
|
|
command:
|
|
- /etcd-tester
|
|
- -agent-endpoints
|
|
- "172.20.0.2:9027,172.20.0.3:9027,172.20.0.4:9027"
|
|
- -limit
|
|
- "1"
|
|
- -stress-key-count
|
|
- "1"
|
|
- -stress-key-size
|
|
- "1"
|
|
|