modified to backup and restore deployment.yaml
[joid.git] / ci / deploy.sh
1 #!/bin/bash
2
3 set -ex
4
5 #need to put mutiple cases here where decide this bundle to deploy by default use the odl bundle.
6 # Below parameters are the default and we can according the release
7
8 opnfvsdn=nosdn
9 opnfvtype=nonha
10 openstack=mitaka
11 opnfvlab=default
12 opnfvrel=c
13 opnfvfeature=none
14 opnfvdistro=xenial
15 opnfvarch=amd64
16
17 read_config() {
18     opnfvrel=`grep release: deploy.yaml | cut -d ":" -f2`
19     openstack=`grep openstack: deploy.yaml | cut -d ":" -f2`
20     opnfvtype=`grep type: deploy.yaml | cut -d ":" -f2`
21     opnfvlab=`grep lab: deploy.yaml | cut -d ":" -f2`
22     opnfvsdn=`grep sdn: deploy.yaml | cut -d ":" -f2`
23 }
24
25 usage() { echo "Usage: $0 [-s <nosdn|odl|opencontrail>]
26                          [-t <nonha|ha|tip>]
27                          [-o <juno|liberty>]
28                          [-l <default|intelpod5>]
29                          [-f <ipv6,dpdk,lxd,dvr>]
30                          [-d <trusty|xenial>]
31                          [-a <amd64>]
32                          [-r <a|b>]" 1>&2 exit 1; }
33
34 while getopts ":s:t:o:l:h:r:f:d:a:" opt; do
35     case "${opt}" in
36         s)
37             opnfvsdn=${OPTARG}
38             ;;
39         t)
40             opnfvtype=${OPTARG}
41             ;;
42         o)
43             openstack=${OPTARG}
44             ;;
45         l)
46             opnfvlab=${OPTARG}
47             ;;
48         r)
49             opnfvrel=${OPTARG}
50             ;;
51         f)
52             opnfvfeature=${OPTARG}
53             ;;
54         d)
55             opnfvdistro=${OPTARG}
56             ;;
57         a)
58             opnfvarch=${OPTARG}
59             ;;
60         h)
61             usage
62             ;;
63         *)
64             ;;
65     esac
66 done
67
68 deploy_dep() {
69     sudo apt-add-repository ppa:juju/stable -y
70     sudo apt-get update
71     sudo apt-get install juju git juju-deployer -y
72     juju init -f
73     cp environments.yaml ~/.juju/
74 }
75
76 #by default maas creates two VMs in case of three more VM needed.
77 createresource() {
78     maas_ip=`grep " ip_address" deployment.yaml | cut -d " "  -f 10`
79     apikey=`grep maas-oauth: environments.yaml | cut -d "'" -f 2`
80     maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
81
82     nodeexist=`maas maas nodes list hostname=node3-control`
83
84     if [ $nodeexist != *node3* ]; then
85         sudo virt-install --connect qemu:///system --name node3-control --ram 8192 --vcpus 4 --disk size=120,format=qcow2,bus=virtio,io=native,pool=default --network bridge=virbr0,model=virtio --network bridge=virbr0,model=virtio --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node3-control
86
87         sudo virt-install --connect qemu:///system --name node4-control --ram 8192 --vcpus 4 --disk size=120,format=qcow2,bus=virtio,io=native,pool=default --network bridge=virbr0,model=virtio --network bridge=virbr0,model=virtio --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node4-control
88
89         node3controlmac=`grep  "mac address" node3-control | head -1 | cut -d "'" -f 2`
90         node4controlmac=`grep  "mac address" node4-control | head -1 | cut -d "'" -f 2`
91
92         sudo virsh -c qemu:///system define --file node3-control
93         sudo virsh -c qemu:///system define --file node4-control
94
95         controlnodeid=`maas maas nodes new autodetect_nodegroup='yes' name='node3-control' tags='control' hostname='node3-control' power_type='virsh' mac_addresses=$node3controlmac power_parameters_power_address='qemu+ssh://'$USER'@192.168.122.1/system' architecture='amd64/generic' power_parameters_power_id='node3-control' | grep system_id | cut -d '"' -f 4 `
96
97         maas maas tag update-nodes control add=$controlnodeid
98
99         controlnodeid=`maas maas nodes new autodetect_nodegroup='yes' name='node4-control' tags='control' hostname='node4-control' power_type='virsh' mac_addresses=$node4controlmac power_parameters_power_address='qemu+ssh://'$USER'@192.168.122.1/system' architecture='amd64/generic' power_parameters_power_id='node4-control' | grep system_id | cut -d '"' -f 4 `
100
101         maas maas tag update-nodes control add=$controlnodeid
102
103     fi
104 }
105
106 #copy the files and create extra resources needed for HA deployment
107 # in case of default VM labs.
108 deploy() {
109
110     if [ ! -f ./environments.yaml ] && [ -e ~/.juju/environments.yaml ]; then
111         cp ~/.juju/environments.yaml ./environments.yaml
112     fi
113     if [ ! -f ./deployment.yaml ] && [ -e ~/.juju/deployment.yaml ]; then
114         cp ~/.juju/deployment.yaml ./deployment.yaml
115     fi
116     if [ ! -f ./labconfig.yaml ] && [ -e ~/.juju/labconfig.yaml ]; then
117         cp ~/.juju/labconfig.yaml ./labconfig.yaml
118     fi
119     if [ ! -f ./deployconfig.yaml ] && [ -e ~/.juju/deployconfig.yaml ]; then
120         cp ~/.juju/deployconfig.yaml ./deployconfig.yaml
121     fi
122
123     #copy the script which needs to get deployed as part of ofnfv release
124     echo "...... deploying now ......"
125     echo "   " >> environments.yaml
126     echo "        enable-os-refresh-update: false" >> environments.yaml
127     echo "        enable-os-upgrade: false" >> environments.yaml
128     echo "        admin-secret: admin" >> environments.yaml
129     echo "        default-series: $opnfvdistro" >> environments.yaml
130
131     cp environments.yaml ~/.juju/
132
133     if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then
134         createresource
135     fi
136
137     #bootstrap the node
138     ./01-bootstrap.sh
139
140     #case default deploy the opnfv platform:
141     ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro
142 }
143
144 #check whether charms are still executing the code even juju-deployer says installed.
145 check_status() {
146     retval=0
147     timeoutiter=0
148     while [ $retval -eq 0 ]; do
149        sleep 30
150        juju status > status.txt
151        if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
152            echo " still executing the reltionship within charms ..."
153            if [ $timeoutiter -ge 60 ]; then
154                retval=1
155            fi
156            timeoutiter=$((timeoutiter+1))
157        else
158            retval=1
159        fi
160     done
161     status=`juju action do heat/0 domain-setup`
162     echo $status
163     juju expose ceph-radosgw
164     #juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
165
166     echo "...... deployment finishing ......."
167 }
168
169 echo "...... deployment started ......"
170 deploy
171
172 check_status
173
174 echo "...... deployment finished  ......."
175
176 ./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
177 sudo ../juju/get-cloud-images || true
178 ../juju/joid-configure-openstack || true
179
180 echo "...... finished  ......."