modified to use mitaka by default rather than Liberty. 43/15243/5
authorNarinder Gupta <narinder.gupta@canonical.com>
Tue, 7 Jun 2016 04:28:21 +0000 (23:28 -0500)
committerNarinder Gupta <narinder.gupta@canonical.com>
Tue, 7 Jun 2016 14:33:54 +0000 (14:33 +0000)
This patch to modify the default deployment to mitaka. Ans also
disable the creation of external network as now joid deploy.sh will
create the external network itself based on labconfig.yaml

Change-Id: I282eaa803af47f04348532ffd1a7a5990d50d380
signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>

jjb/joid/joid-deploy.sh
jjb/opnfv/installer-params.yml

index 51a1469..bd25973 100644 (file)
@@ -223,29 +223,6 @@ curl -i -sw '%{http_code}' -H "Content-Type: application/json"   -d "
 }"   http://$KEYSTONE:5000/v3/auth/tokens |grep "HTTP/1.1 20" 2>&1 >/dev/null;
 exit_on_error $? "Deploy FAILED to auth to openstack"
 
-
-##
-## Create external network if needed
-##
-
-# If we have more information than only the name, try to create it
-if [ -z "$EXTNET_TYPE" ]; then
-    echo "------ No data for external network creation, pass ------"
-elif [[ "$DEPLOY_SCENARIO" =~ "onos" ]]; then
-    echo "------ ONOS have created the external network, pass ------"
-else
-    echo "------ External network creation ------"
-    neutron net-create $EXTNET_NAME --router:external True \
-      --provider:physical_network external --provider:network_type $EXTNET_TYPE
-    exit_on_error $? "External network creation failed"
-    neutron subnet-create $EXTNET_NAME --name $EXTNET_NAME \
-      --allocation-pool start=$EXTNET_FIP,end=$EXTNET_LIP \
-      --disable-dhcp --gateway $EXTNET_GW $EXTNET_NET
-    exit_on_error $? "External subnet creation failed"
-    neutron net-update $EXTNET_NAME --shared
-    exit_on_error $? "External network sharing failed"
-fi
-
 ##
 ## Exit success
 ##
index c0223e2..98a15de 100644 (file)
@@ -63,8 +63,8 @@
             description: 'Installer used for deploying OPNFV on this POD'
         - string:
             name: OS_RELEASE
-            default: 'liberty'
-            description: 'OpenStack release (kilo|liberty)'
+            default: 'mitaka'
+            description: 'OpenStack release (liberty|mitaka)'
         - string:
             name: EXTERNAL_NETWORK
             default: ext-net;flat;192.168.0.2;192.168.0.253;192.168.0.1;192.168.0.0/24