modified for bionic support for future deployment. 63/48263/1
authorNarinder Gupta <narinder.gupta@canonical.com>
Fri, 1 Dec 2017 18:28:41 +0000 (12:28 -0600)
committerNarinder Gupta <narinder.gupta@canonical.com>
Fri, 1 Dec 2017 18:28:41 +0000 (12:28 -0600)
Change-Id: Ife9d8e071d2ffb36238decfa0f1d934d1a0b0c88
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
ci/03-maasdeploy.sh

index 005be47..7ea3cf3 100755 (executable)
@@ -21,6 +21,7 @@ then
     usage;
 fi
 
+opnfvdistro=`cat /etc/lsb-release | grep CODENAME | cut -d "=" -f 2`
 
 virtinstall=0
 labname=$1
@@ -50,17 +51,34 @@ sudo apt-get update -y || true
 sudo apt-get install software-properties-common -y
 sudo apt-add-repository ppa:juju/stable -y
 sudo apt-add-repository ppa:maas/stable -y
-sudo apt-add-repository cloud-archive:pike -y
+if [ "bionic" == "$opnfvdistro" ]; then
+    echo "no cloud archive needed"
+else
+    sudo apt-add-repository cloud-archive:pike -y
+fi
+
 if [ "aarch64" == "$NODE_ARCTYPE" ]; then
-sudo add-apt-repository ppa:ubuntu-cloud-archive/pike-staging -y
+    if [ "bionic" == "$opnfvdistro" ]; then
+        echo "no repository needed"
+    else
+        sudo add-apt-repository ppa:ubuntu-cloud-archive/pike-staging -y
+    fi
 fi
 sudo apt-get update -y || true
 #sudo apt-get dist-upgrade -y
 
-sudo apt-get install bridge-utils openssh-server bzr git virtinst qemu-kvm libvirt-bin \
+if [ "bionic" == "$opnfvdistro" ]; then
+    sudo apt-get install bridge-utils openssh-server bzr git virtinst qemu-kvm libvirt-bin \
+             maas maas-region-controller juju python-pip python-psutil python-openstackclient \
+             python-congressclient gsutil pastebinit python-jinja2 sshpass \
+             openssh-server vlan ipmitool jq expect snap -y --allow-unauthenticated
+    sudo snap install charm
+else
+    sudo apt-get install bridge-utils openssh-server bzr git virtinst qemu-kvm libvirt-bin \
              maas maas-region-controller juju python-pip python-psutil python-openstackclient \
              python-congressclient gsutil charm-tools pastebinit python-jinja2 sshpass \
              openssh-server vlan ipmitool jq expect snap -y --allow-unauthenticated
+fi
 
 if [ "aarch64" == "$NODE_ARCTYPE" ]; then
     sudo apt-get install qemu qemu-efi qemu-system-aarch64 -y --allow-unauthenticated
@@ -68,7 +86,6 @@ fi
 
 sudo -H pip install --upgrade pip
 
-
 #
 # Config preparation
 #