aboutsummaryrefslogtreecommitdiffstats
path: root/installation/src/main/yaml/docker-compose.yml
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dt5972@att.com>2018-04-27 08:55:48 -0400
committerTimoney, Dan (dt5972) <dt5972@att.com>2018-04-27 08:55:48 -0400
commit9b844cb5985a1a573a1ed43990aac3282547b2ce (patch)
tree538f27219e2595bdf74a2c37f250f7c6e47e3e8d /installation/src/main/yaml/docker-compose.yml
parent49e275cac824dd6dcd4cbc7ccd5f922419d662f3 (diff)
Fix ansible server config
Added ansible server to docker-compose.yml and made a few config changes: - redirect of output in final exec causes exec to fail. Instead, need to redirect output in standalone exec line. Redirected to /var/log/ansible-server.log - Updated LCM config to use ansiblehost alias to reach ansible (was incorrectly using 0.0.0.0) Change-Id: I4b1b6bbc5f3df6f480333d53adda4c8e6e0d6510 Issue-ID: SDNC-288 Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com> Former-commit-id: 50c65c2c7cd92db6d14215114d098b33da5f618d
Diffstat (limited to 'installation/src/main/yaml/docker-compose.yml')
-rw-r--r--installation/src/main/yaml/docker-compose.yml23
1 files changed, 21 insertions, 2 deletions
diff --git a/installation/src/main/yaml/docker-compose.yml b/installation/src/main/yaml/docker-compose.yml
index 2a39f216..f2cc5a2d 100644
--- a/installation/src/main/yaml/docker-compose.yml
+++ b/installation/src/main/yaml/docker-compose.yml
@@ -22,11 +22,31 @@ services:
max-size: "30m"
max-file: "5"
+ ansible:
+ image: onap/sdnc-ansible-server-image:latest
+ depends_on :
+ - db
+ container_name: sdnc_ansible_container
+ entrypoint: ["/opt/onap/sdnc/startAnsibleServer.sh"]
+ ports:
+ - "8000"
+ links:
+ - db:dbhost
+ - db:sdnctldb01
+ - db:sdnctldb02
+ environment:
+ - MYSQL_ROOT_PASSWORD=openECOMP1.0
+ logging:
+ driver: "json-file"
+ options:
+ max-size: "30m"
+ max-file: "5"
sdnc:
image: onap/sdnc-image:latest
depends_on :
- db
+ - ansible
container_name: sdnc_controller_container
entrypoint: ["/opt/onap/sdnc/bin/startODL.sh"]
ports:
@@ -35,11 +55,10 @@ services:
- db:dbhost
- db:sdnctldb01
- db:sdnctldb02
+ - ansible:ansiblehost
environment:
- MYSQL_ROOT_PASSWORD=openECOMP1.0
- SDNC_CONFIG_DIR=/opt/onap/sdnc/data/properties
- dns:
- - ${DNS_IP_ADDR-10.0.100.1}
logging:
driver: "json-file"
options: