summaryrefslogtreecommitdiffstats
path: root/docker/bottleneck-compose/docker-compose.yml
diff options
context:
space:
mode:
authorliyin <liyin11@huawei.com>2017-07-17 17:45:38 +0800
committerliyin <liyin11@huawei.com>2017-07-17 17:45:38 +0800
commit75f99aaeadada56dfc974746cd83fec275133a3c (patch)
treef916a3b19140a0e938205a94197e20c151df0113 /docker/bottleneck-compose/docker-compose.yml
parentb26f701ab2327497b0e44f548ea18e24b1e6b0d9 (diff)
Bug fix of Bottlenecks can't use CLI
JIRA: BOTTLENECK-171 Bug fix of Bottlenecks can't use CLI to start test. Some docker-compose function delete to fit elk docker support. After this patch you could use bottlenecks testcase run posca_factor_ping to start this test. you also need to put the rc file to bottlenecks docker. Change-Id: I340e31185a499c81f9595a902df89d8f0ddf0cd3 Signed-off-by: liyin <liyin11@huawei.com>
Diffstat (limited to 'docker/bottleneck-compose/docker-compose.yml')
-rw-r--r--docker/bottleneck-compose/docker-compose.yml46
1 files changed, 0 insertions, 46 deletions
diff --git a/docker/bottleneck-compose/docker-compose.yml b/docker/bottleneck-compose/docker-compose.yml
deleted file mode 100644
index a0f3df4d..00000000
--- a/docker/bottleneck-compose/docker-compose.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-elasticsearch:
- image: elasticsearch:2.4.0
- command: elasticsearch -Des.network.host=0.0.0.0
- privileged: true
- ports:
- - "9200:9200"
- - "9300:9300"
-
-kibana:
- build: kibana/
- volumes:
- - ./kibana/config/:/opt/kibana/config/
- privileged: true
- ports:
- - "5601:5601"
- links:
- - elasticsearch
-
-yardstick:
- restart: always
- image: opnfv/yardstick:latest
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - /tmp/:/tmp/
- ports:
- - "8888:5000"
- privileged: true
- environment:
- - INSTALLER_IP=192.168.200.2
- - INSTALLER_TYPE=compass
-
-bottlenecks:
- restart: always
- build: bottlenecks/
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - /tmp/:/tmp/
- privileged: true
- environment:
- - INSTALLER_IP=192.168.200.2
- - INSTALLER_TYPE=compass
- - DEBUG=true
- - NODE_NAME=${NODE_NAME}
- - DEPLOY_SCENARIO=${DEPLOY_SCENARIO}
- - BUILD_TAG=${BUILD_TAG}
- - BRANCH=${BRANCH}