#!/bin/bash #placeholder for deployment script. set -ex maasver=`apt-cache policy maas | grep Installed | cut -d ':' -f 2 | sed -e 's/ //'` if [[ "$maasver" > "2" ]]; then echo "removing existing maas ..." #sudo apt-get purge maas maas-cli maas-common maas-dhcp maas-dns maas-proxy maas-rack-controller maas-region-api maas-region-controller -y #sudo rm -rf /var/lib/maas fi virtinstall=0 labname=$1 if [ ! -e $HOME/.ssh/id_rsa ]; then ssh-keygen -N '' -f $HOME/.ssh/id_rsa fi #install the packages needed sudo apt-add-repository ppa:juju/stable -y sudo apt-add-repository ppa:maas/stable -y sudo apt-add-repository cloud-archive:newton -y sudo apt-get update -y sudo apt-get dist-upgrade -y sudo apt-get install openssh-server bzr git juju virtinst qemu-kvm libvirt-bin \ maas maas-region-controller python-pip python-psutil python-openstackclient \ python-congressclient gsutil charm-tools pastebinit python-jinja2 sshpass \ openssh-server vlan ipmitool -y sudo pip install --upgrade pip #first parameter should be custom and second should be either # absolute location of file (including file name) or url of the # file to download. # # Config preparation # # Get labconfig and generate deployment.yaml for MAAS and deployconfig.yaml case "$labname" in intelpod[569]|orangepod[12]|cengnpod[12] ) array=(${labname//pod/ }) cp ../labconfig/${array[0]}/pod${array[1]}/labconfig.yaml . python genMAASConfig.py -l labconfig.yaml > deployment.yaml python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml ;; 'attvirpod1' ) cp ../labconfig/att/virpod1/labconfig.yaml . python genMAASConfig.py -l labconfig.yaml > deployment.yaml python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml ;; 'juniperpod1' ) cp maas/juniper/pod1/deployment.yaml ./deployment.yaml ;; 'custom') labfile=$2 if [ -e $labfile ]; then cp $labfile ./labconfig.yaml || true else wget $labconfigfile -t 3 -T 10 -O ./labconfig.yaml || true count=`wc -l labconfig.yaml | cut -d " " -f 1` if [ $count -lt 10 ]; then rm -rf labconfig.yaml fi fi if [ ! -e ./labconfig.yaml ]; then virtinstall=1 labname="default" cp ../labconfig/default/deployment.yaml ./ cp ../labconfig/default/labconfig.yaml ./ cp ../labconfig/default/deployconfig.yaml ./ else python genMAASConfig.py -l labconfig.yaml > deployment.yaml python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml labname=`grep "maas_name" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'` fi ;; * ) virtinstall=1 labname="default" cp ../labconfig/default/deployment.yaml ./ cp ../labconfig/default/labconfig.yaml ./ cp ../labconfig/default/deployconfig.yaml ./ ;; esac MAAS_IP=$(grep " ip_address" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //') MAAS_NAME=`grep "maas_name" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'` API_SERVER="http://$MAAS_IP/MAAS/api/2.0" API_SERVERMAAS="http://$MAAS_IP/MAAS/" PROFILE=ubuntu MY_UPSTREAM_DNS=`grep "upstream_dns" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'` SSH_KEY=`cat ~/.ssh/id_rsa.pub` MAIN_ARCHIVE=`grep "main_archive" deployment.yaml | cut -d ':' -f 2-3 | sed -e 's/ //'` URL=https://images.maas.io/ephemeral-v2/daily/ KEYRING_FILE=/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg SOURCE_ID=1 FABRIC_ID=1 VLAN_TAG="" PRIMARY_RACK_CONTROLLER="$MAAS_IP" SUBNET_CIDR="192.168.122.0/24" VLAN_TAG="untagged" # In the case of a virtual deployment get deployment.yaml and deployconfig.yaml if [ "$virtinstall" -eq 1 ]; then MAAS_IP="192.168.122.1" API_SERVER="http://$MAAS_IP/MAAS/api/2.0" API_SERVERMAAS="http://$MAAS_IP/MAAS/" PRIMARY_RACK_CONTROLLER="$MAAS_IP" ./cleanvm.sh || true fi #create backup directory mkdir ~/joid_config/ || true # Backup deployment.yaml and deployconfig.yaml in joid_config folder if [ -e ./deployconfig.yaml ]; then cp ./deployconfig.yaml ~/joid_config/ cp ./labconfig.yaml ~/joid_config/ fi if [ -e ./deployment.yaml ]; then cp ./deployment.yaml ~/joid_config/ fi # # Prepare local environment to avoid password asking # # make sure no password asked during the deployment. echo "$USER ALL=(ALL) NOPASSWD:ALL" > 90-joid-init if [ -e /etc/sudoers.d/90-joid-init ]; then sudo cp /etc/sudoers.d/90-joid-init 91-joid-init sudo chown $USER:$USER 91-joid-init sudo chmod 660 91-joid-init sudo cat 90-joid-init >> 91-joid-init sudo chown root:root 91-joid-init sudo mv 91-joid-init /etc/sudoers.d/ else sudo chown root:root 90-joid-init sudo mv 90-joid-init /etc/sudoers.d/ fi echo "... Deployment of maas Started ...." # # Virsh preparation # # define the pool and try to start even though its already exist. # For fresh install this may or may not there. sudo adduser $USER libvirtd sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true sudo virsh pool-start default || true sudo virsh pool-autostart default || true # In case of virtual install set network if [ "$virtinstall" -eq 1 ]; then sudo virsh net-dumpxml default > default-net-org.xml sudo sed -i '/dhcp/d' default-net-org.xml sudo sed -i '/range/d' default-net-org.xml sudo virsh net-define default-net-org.xml sudo virsh net-destroy default sudo virsh net-start default fi # # Cleanup, juju init and config backup # # To avoid problem between apiclient/maas_client and apiclient from google # we remove the package google-api-python-client from yardstick installer if [ $(pip list |grep google-api-python-client |wc -l) == 1 ]; then sudo pip uninstall google-api-python-client fi if [ ! -e ~maas/.ssh/id_rsa.pub ]; then sudo su - $USER -c "echo |ssh-keygen -t rsa -f $HOME/id_rsa_maas" sudo -u maas mkdir ~maas/.ssh/ || true sudo cp $HOME/id_rsa_maas ~maas/.ssh/id_rsa sudo cp $HOME/id_rsa_maas.pub ~maas/.ssh/id_rsa.pub sudo chown maas:maas ~maas/.ssh/id_rsa sudo chown maas:maas ~maas/.ssh/id_rsa.pub fi # Ensure virsh can connect without ssh auth sudo cat ~maas/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys sudo cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys # # MAAS deploy # installmaas(){ sudo apt-get install maas maas-region-controller -y } # # MAAS config # https://insights.ubuntu.com/2016/01/23/maas-setup-deploying-openstack-on-maas-1-9-with-juju/ # http://blog.naydenov.net/2016/01/nodes-networking-deploying-openstack-on-maas-1-9-with-juju/ # configuremaas(){ sudo maas createadmin --username=ubuntu --email=ubuntu@ubuntu.com --password=ubuntu || true API_KEY=`sudo maas-region apikey --username=ubuntu` maas login $PROFILE $API_SERVERMAAS $API_KEY maas $PROFILE maas set-config name='main_archive' value=$MAIN_ARCHIVE || true maas $PROFILE maas set-config name=upstream_dns value=$MY_UPSTREAM_DNS || true maas $PROFILE maas set-config name='maas_name' value=$MAAS_NAME || true maas $PROFILE maas set-config name='ntp_server' value='ntp.ubuntu.com' || true maas $PROFILE sshkeys create "key=$SSH_KEY" || true maas $PROFILE boot-source update $SOURCE_ID \ url=$URL keyring_filename=$KEYRING_FILE || true maas $PROFILE boot-source-selections create 1 \ release='trusty' arches='amd64' labels='daily' \ os='ubuntu' subarches='*' || true maas $PROFILE boot-resources import || true while [ "$(maas $PROFILE boot-resources read | grep trusty | wc -l )" -le 0 ]; do maas $PROFILE boot-resources import || true sleep 20 done maas $PROFILE tags create name='bootstrap' || true maas $PROFILE tags create name='compute' || true maas $PROFILE tags create name='control' || true maas $PROFILE tags create name='storage' || true #create the required spaces. maas $PROFILE space update 0 name=default || true maas $PROFILE spaces create name=unused || true maas $PROFILE spaces create name=admin-api || true maas $PROFILE spaces create name=internal-api || true maas $PROFILE spaces create name=public-api || true maas $PROFILE spaces create name=compute-data || true maas $PROFILE spaces create name=compute-external || true maas $PROFILE spaces create name=storage-data || true maas $PROFILE spaces create name=storage-cluster || true #maas $PROFILE subnet update vlan: name=internal-api space=<0> gateway_ip=10.5.1.1 #maas $PROFILE subnet update vlan: name=admin-api space=<2> gateway_ip=10.5.12.1 #maas $PROFILE subnet update vlan: name=public-api space=<1> gateway_ip=10.5.15.1 #maas $PROFILE subnet update vlan: name=compute-data space=<3> gateway_ip=10.5.17.1 #maas $PROFILE subnet update vlan: name=compute-external space=<4> gateway_ip=10.5.19.1 #maas $PROFILE subnet update vlan: name=storage-data space=<5> gateway_ip=10.5.20.1 #maas $PROFILE subnet update vlan: name=storage-cluster space=<6> gateway_ip=10.5.21.1 } enablesubnetanddhcp(){ SUBNET_PREFIX="192.168.122" SUBNET_CIDR="($SUBNET_PREFIX).0/24" IP_STATIC_RANGE_LOW="192.168.122.1" IP_STATIC_RANGE_HIGH="192.168.122.49" API_KEY=`sudo maas-region apikey --username=ubuntu` maas login $PROFILE $API_SERVERMAAS $API_KEY maas $PROFILE ipranges create type=reserved \ start_ip=$IP_STATIC_RANGE_LOW end_ip=$IP_STATIC_RANGE_HIGH \ comment='This is a reserved range' || true IP_DYNAMIC_RANGE_LOW="192.168.122.50" IP_DYNAMIC_RANGE_HIGH="192.168.122.150" maas $PROFILE ipranges create type=dynamic \ start_ip=$IP_DYNAMIC_RANGE_LOW end_ip=$IP_DYNAMIC_RANGE_HIGH \ comment='This is a reserved dynamic range' || true FABRIC_ID=$(maas $PROFILE subnet read $SUBNET_CIDR \ | grep fabric | cut -d ' ' -f 10 | cut -d '"' -f 2) PRIMARY_RACK_CONTROLLER=`maas $PROFILE rack-controllers read | grep system_id | cut -d '"' -f 4` maas $PROFILE vlan update $FABRIC_ID $VLAN_TAG dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true MY_GATEWAY="192.168.122.1" MY_NAMESERVER=192.168.122.1 maas $PROFILE subnet update $SUBNET_CIDR gateway_ip=$MY_GATEWAY || true maas $PROFILE subnet update $SUBNET_CIDR dns_servers=$MY_NAMESERVER || true } ## derived from https://gist.github.com/epiloque/8cf512c6d64641bde388 ## works for arrays of hashes, as long as the hashes do not have arrays parse_yaml2() { local prefix=$2 local s local w local fs s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs="$(echo @|tr @ '\034')" sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \ -e "s|^\($s\)\($w\)$s[:-]$s\(.*\)$s\$|\1$fs\2$fs\3|p" "$1" | awk -F"$fs" '{ indent = length($1)/2; if (length($2) == 0) { conj[indent]="+";} else {conj[indent]="";} vname[indent] = $2; for (i in vname) {if (i > indent) {delete vname[i]}} if (length($3) > 0) { vn=""; for (i=0; i credential.yaml echo " $controllername:" >> credential.yaml echo " opnfv-credentials:" >> credential.yaml echo " auth-type: oauth1" >> credential.yaml echo " maas-oauth: $API_KEY" >> credential.yaml juju add-credential $controllername -f credential.yaml --replace } addcloud() { controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml` cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml` echo "clouds:" > maas-cloud.yaml echo " $cloudname:" >> maas-cloud.yaml echo " type: maas" >> maas-cloud.yaml echo " auth-types: [oauth1]" >> maas-cloud.yaml echo " endpoint: $API_SERVERMAAS" >> maas-cloud.yaml juju add-cloud $cloudname maas-cloud.yaml --replace } # # VLAN customization # case "$labname" in 'intelpod9' ) maas refresh crvlanupdsubnet vlan904 fabric-1 "MgmtNetwork" 904 2 || true crvlanupdsubnet vlan905 fabric-2 "PublicNetwork" 905 3 || true crnodevlanint $vlan905 eth1 || true crnodevlanint $vlan905 eth3 || true enableautomodebyname eth1.905 AUTO "10.9.15.0/24" || true enableautomodebyname eth3.905 AUTO "10.9.15.0/24" || true enableautomodebyname eth0 AUTO "10.9.12.0/24" || true enableautomodebyname eth2 AUTO "10.9.12.0/24" || true ;; esac # # Enable MAAS nodes interfaces # #read interface needed in Auto mode and enable it. Will be rmeoved once auto enablement will be implemented in the maas-deployer. if [ -e ./deployconfig.yaml ]; then enableiflist=`grep "interface-enable" deployconfig.yaml | cut -d ' ' -f 4 ` datanet=`grep "dataNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'` stornet=`grep "storageNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'` pubnet=`grep "publicNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'` # split EXTERNAL_NETWORK=first ip;last ip; gateway;network if [ "$datanet" != "''" ]; then EXTNET=(${enableiflist//,/ }) i="0" while [ ! -z "${EXTNET[i]}" ]; do enableautomode ${EXTNET[i]} AUTO $datanet || true i=$[$i+1] done fi if [ "$stornet" != "''" ]; then EXTNET=(${enableiflist//,/ }) i="0" while [ ! -z "${EXTNET[i]}" ]; do enableautomode ${EXTNET[i]} AUTO $stornet || true i=$[$i+1] done fi if [ "$pubnet" != "''" ]; then EXTNET=(${enableiflist//,/ }) i="0" while [ ! -z "${EXTNET[i]}" ]; do enableautomode ${EXTNET[i]} AUTO $pubnet || true i=$[$i+1] done fi fi # Add the cloud and controller credentials for MAAS for that lab. jujuver=`juju --version` if [ "$jujuver" > "2" ]; then addcloud addcredential fi # # End of scripts # echo " .... MAAS deployment finished successfully ...."