aboutsummaryrefslogtreecommitdiffstats
path: root/util/docker-compose/group_vars/all
diff options
context:
space:
mode:
authorHarry Huang <huangxiangyu5@huawei.com>2017-11-07 15:30:51 +0800
committerHarry Huang <huangxiangyu5@huawei.com>2017-12-21 15:35:12 +0800
commita360411cb8c775dffa24a4157cec2b566cbde6f3 (patch)
tree400e879a6f6779c294d7f2113c05b29d5578cff3 /util/docker-compose/group_vars/all
parent4074d39e93d7e7697dd2aaad2e08433ca0a60221 (diff)
Add compass-docker-compose
1. Add ansible for docker compose containerized compass 2. deploy/conf/compass.conf no longer specify image tags for runtime. build.yaml now is added into compass tarball to be the only place determine image tags 3. This patch is based on patch: https://gerrit.opnfv.org/gerrit/#/c/47393/ use merged compass-tasks 4. Tempoarily using private docker repo for compass-tasks. Switch to opnfv repo when patch https://gerrit.opnfv.org/gerrit/#/c/47329/ is merged 5. Modify ansible callback module accrodingly Change-Id: I0728a9002a1cc7804c9e8f13bd1afdccb684a159 Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
Diffstat (limited to 'util/docker-compose/group_vars/all')
-rwxr-xr-xutil/docker-compose/group_vars/all41
1 files changed, 41 insertions, 0 deletions
diff --git a/util/docker-compose/group_vars/all b/util/docker-compose/group_vars/all
new file mode 100755
index 00000000..1dafe814
--- /dev/null
+++ b/util/docker-compose/group_vars/all
@@ -0,0 +1,41 @@
+---
+# env vars
+compass_dir:
+compass_dists_dir: "{{ compass_dir }}/work/deploy/installer/compass_dists"
+docker_compose_dir: "{{ compass_dir }}/work/deploy/docker"
+
+compose_images:
+
+docker_tag: v0.1
+deck_port: 5050
+repo_port: 5151
+
+host_ip: 10.1.0.1
+install_subnet: 10.1.0.0
+install_prefix: 24
+install_netmask: 255.255.255.0
+install_ip_range: 10.1.0.100 10.1.0.250
+
+pip_pkg_name: pip-openstack.tar.gz
+feature_pkg_name: packages.tar.gz
+
+distros:
+ ubuntu-16.04.3:
+ breed: "ubuntu"
+ kickstart: "default16.seed"
+ kopts: "netcfg/choose_interface=auto console='ttyS0,115200n8' console=tty0 net.ifnames=0 biosdevname=0 vga=788"
+ kopts_post: "console='ttyS0,115200n8' console=tty0 net.ifnames=0 biosdevname=0 vga=788"
+ extra: "--apt-dists=xenial --apt-components=main"
+ aliase: "xenial"
+ version: "ubuntu"
+ iso_name: ubuntu-16.04.3-server-amd64
+ ppa_name: xenial-pike-ppa
+
+ CentOS-7:
+ breed: "redhat"
+ kickstart: "default.ks"
+ aliase: "centos7"
+ version: "centos"
+ iso_name: CentOS-7-x86_64-Minimal-1708
+ ppa_name: centos7-pike-ppa
+