did some cleanupm job.
[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 opnfvmodel=openstack
17
18 jujuver=`juju --version`
19
20 read_config() {
21     opnfvrel=`grep release: deploy.yaml | cut -d ":" -f2`
22     openstack=`grep openstack: deploy.yaml | cut -d ":" -f2`
23     opnfvtype=`grep type: deploy.yaml | cut -d ":" -f2`
24     opnfvlab=`grep lab: deploy.yaml | cut -d ":" -f2`
25     opnfvsdn=`grep sdn: deploy.yaml | cut -d ":" -f2`
26 }
27
28 usage() { echo "Usage: $0 [-s <nosdn|odl|opencontrail>]
29                          [-t <nonha|ha|tip>]
30                          [-o <juno|liberty>]
31                          [-l <default|intelpod5>]
32                          [-f <ipv6,dpdk,lxd,dvr>]
33                          [-d <trusty|xenial>]
34                          [-a <amd64>]
35                          [-m <openstack|kubernetes>]
36                          [-r <a|b>]" 1>&2 exit 1; }
37
38 while getopts ":s:t:o:l:h:r:f:d:a:m:" opt; do
39     case "${opt}" in
40         s)
41             opnfvsdn=${OPTARG}
42             ;;
43         t)
44             opnfvtype=${OPTARG}
45             ;;
46         o)
47             openstack=${OPTARG}
48             ;;
49         l)
50             opnfvlab=${OPTARG}
51             ;;
52         r)
53             opnfvrel=${OPTARG}
54             ;;
55         f)
56             opnfvfeature=${OPTARG}
57             ;;
58         d)
59             opnfvdistro=${OPTARG}
60             ;;
61         a)
62             opnfvarch=${OPTARG}
63             ;;
64         m)
65             opnfvmodel=${OPTARG}
66             ;;
67         h)
68             usage
69             ;;
70         *)
71             ;;
72     esac
73 done
74
75 #by default maas creates two VMs in case of three more VM needed.
76 createresource() {
77     maas_ip=`grep " ip_address" deployment.yaml | cut -d " "  -f 10`
78     apikey=`grep maas-oauth: environments.yaml | cut -d "'" -f 2`
79     maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
80
81     nodeexist=`maas maas nodes list hostname=node3-control`
82
83     if [ $nodeexist != *node3* ]; then
84         sudo virt-install --connect qemu:///system --name node3-control --ram 8192 --cpu host --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
85
86         sudo virt-install --connect qemu:///system --name node4-control --ram 8192 --cpu host --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
87
88         node3controlmac=`grep  "mac address" node3-control | head -1 | cut -d "'" -f 2`
89         node4controlmac=`grep  "mac address" node4-control | head -1 | cut -d "'" -f 2`
90
91         sudo virsh -c qemu:///system define --file node3-control
92         sudo virsh -c qemu:///system define --file node4-control
93
94         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 `
95
96         maas maas tag update-nodes control add=$controlnodeid
97
98         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 `
99
100         maas maas tag update-nodes control add=$controlnodeid
101
102     fi
103 }
104
105 #copy the files and create extra resources needed for HA deployment
106 # in case of default VM labs.
107 deploy() {
108   if [ ! -f ./deployment.yaml ] && [ -e ~/.juju/deployment.yaml ]; then
109       cp ~/.juju/deployment.yaml ./deployment.yaml
110   elif [ ! -f ./deployment.yaml ] && [ -e ~/joid_config/deployment.yaml ]; then
111       cp ~/joid_config/deployment.yaml ./deployment.yaml
112   fi
113
114   if [[ "$jujuver" > "2" ]]; then
115     if [ ! -f ./labconfig.yaml ] && [ -e ~/joid_config/labconfig.yaml ]; then
116         cp ~/joid_config/labconfig.yaml ./labconfig.yaml
117     fi
118     if [ ! -f ./deployconfig.yaml ] && [ -e ~/joid_config/deployconfig.yaml ]; then
119         cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
120     fi
121   else
122     if [ ! -f ./environments.yaml ] && [ -e ~/.juju/environments.yaml ]; then
123         cp ~/.juju/environments.yaml ./environments.yaml
124     elif [ ! -f ./environments.yaml ] && [ -e ~/joid_config/environments.yaml ]; then
125         cp ~/joid_config/environments.yaml ./environments.yaml
126     fi
127     #copy the script which needs to get deployed as part of ofnfv release
128     echo "...... deploying now ......"
129     echo "   " >> environments.yaml
130     echo "        enable-os-refresh-update: false" >> environments.yaml
131     echo "        enable-os-upgrade: false" >> environments.yaml
132     echo "        admin-secret: admin" >> environments.yaml
133     echo "        default-series: $opnfvdistro" >> environments.yaml
134     cp environments.yaml ~/.juju/
135     cp environments.yaml ~/joid_config/
136   fi
137
138
139
140     if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then
141         createresource
142     fi
143
144     #bootstrap the node
145     ./01-bootstrap.sh
146
147     if [[ "$jujuver" > "2" ]]; then
148         juju model-config default-series=$opnfvdistro enable-os-refresh-update=false enable-os-upgrade=false
149     fi
150
151     #case default deploy the opnfv platform:
152     ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro $opnfvmodel
153 }
154
155 #check whether charms are still executing the code even juju-deployer says installed.
156 check_status() {
157     retval=0
158     timeoutiter=0
159     while [ $retval -eq 0 ]; do
160        sleep 30
161        juju status > status.txt
162        if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
163            echo " still executing the reltionship within charms ..."
164            if [ $timeoutiter -ge 120 ]; then
165                retval=1
166            fi
167            timeoutiter=$((timeoutiter+1))
168        else
169            retval=1
170        fi
171     done
172
173     if [[ "$opnfvmodel" = "openstack" ]]; then
174         juju expose ceph-radosgw || true
175         #juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
176     fi
177     echo "...... deployment finishing ......."
178 }
179
180 echo "...... deployment started ......"
181 deploy
182
183 check_status
184
185 echo "...... deployment finished  ......."
186
187 if [[ "$opnfvmodel" = "openstack" ]]; then
188     ./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
189
190     # creating heat domain after puching the public API into /etc/hosts
191
192     if [[ "$jujuver" > "2" ]]; then
193         status=`juju run-action heat/0 domain-setup`
194         echo $status
195     else
196         status=`juju action do heat/0 domain-setup`
197         echo $status
198     fi
199
200
201     sudo ../juju/get-cloud-images || true
202     ../juju/joid-configure-openstack || true
203
204 fi
205 if [[ "$opnfvmodel" = "kubernetes" ]]; then
206     ./k8.sh
207 fi
208
209 echo "...... finished  ......."