From 1f67ee4bac259f5997ee570eec3060f24e05d56f Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Thu, 30 Jun 2016 17:04:04 -0500 Subject: modified to make use of the bundle generated. Change-Id: I1854658a93dbb3cbd1a7c41d19d7a76645ede85c Signed-off-by: Narinder Gupta --- ci/01-deploybundle.sh | 14 +++++++++++++- ci/bundle_tpl/phase2-overrides.yaml | 4 ++-- ci/deploy.py | 1 + ci/genBundle.py | 2 +- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/ci/01-deploybundle.sh b/ci/01-deploybundle.sh index 08f539b5..bf16ce7c 100755 --- a/ci/01-deploybundle.sh +++ b/ci/01-deploybundle.sh @@ -89,9 +89,14 @@ case "$3" in esac # lets put the if seperateor as "," as this will save me from world. +fea="" IFS="," - for feature in $5; do + if [ "$fea" == "" ]; then + fea=$feature + else + fea=$fea"_"$feature + fi case "$feature" in 'ipv6' ) sed -i -- 's/#prefer-ipv6: true/prefer-ipv6: true/g' ./bundles.yaml @@ -139,6 +144,13 @@ case "$6" in ;; esac +var=os-$4-$fea-$1 +if [ "$4" == "nosdn" ]; then + python genBundle.py -l deployconfig.yaml -s $var > bundles.yaml +elif [ "$4" == "odl" ]; then + python genBundle.py -l deployconfig.yaml -s $var > bundles.yaml +fi + echo "... Deployment Started ...." juju-deployer -vW -d -t 3600 -c bundles.yaml $6-"$2"-nodes check_status diff --git a/ci/bundle_tpl/phase2-overrides.yaml b/ci/bundle_tpl/phase2-overrides.yaml index c2b8ff9a..80bfffc6 100644 --- a/ci/bundle_tpl/phase2-overrides.yaml +++ b/ci/bundle_tpl/phase2-overrides.yaml @@ -1,10 +1,10 @@ {% if opnfv.spaces_dict.data is defined %} - os-data-network: {{ opnfv.dataNetwork }} + os-data-network: {{ opnfv.spaces_dict.data.cidr }} {% endif %} {% if opnfv.spaces_dict.storage is defined %} #ceph-cluster-network: {{ opnfv.spaces_dict.storage.cidr }} {% endif %} -{% if os.network.ipv6 == 'true' %} +{% if os.network.ipv6 %} prefer-ipv6: {{ os.network.ipv6 }} {% endif %} {% if os.network.dvr %} diff --git a/ci/deploy.py b/ci/deploy.py index 08861612..a7ee952f 100644 --- a/ci/deploy.py +++ b/ci/deploy.py @@ -242,6 +242,7 @@ opnfvlabcfg["opnfv"]["ext_port"]=labcfg["lab"]["racks"][0]["ext-port"] opnfvlabcfg["opnfv"]["units"]=len(labcfg["lab"]["racks"][0]["nodes"]) opnfvlabcfg["opnfv"]["admin_password"]="openstack" opnfvlabcfg["opnfv"]["storage"]=labcfg["opnfv"]["storage"] +opnfvlabcfg["opnfv"]["spaces"]=labcfg["opnfv"]["spaces"] with open('deployment.yaml', 'wa') as opnfvf: yaml.dump(opnfvcfg, opnfvf, default_flow_style=False) diff --git a/ci/genBundle.py b/ci/genBundle.py index 85af5da2..cb61f5aa 100644 --- a/ci/genBundle.py +++ b/ci/genBundle.py @@ -130,7 +130,7 @@ config['os']['network']['controller'] = sdn # Change features if 'lxd' in features: config['os']['lxd'] = True -if 'drv' in features: +if 'dvr' in features: config['os']['network']['dvr'] = True if 'ipv6' in features: config['os']['network']['ipv6'] = True -- cgit 1.2.3-korg