[beta] add a public api proxy for orange pod1
[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
114     #copy the script which needs to get deployed as part of ofnfv release
115     echo "...... deploying now ......"
116     echo "   " >> environments.yaml
117     echo "        enable-os-refresh-update: false" >> environments.yaml
118     echo "        enable-os-upgrade: false" >> environments.yaml
119     echo "        admin-secret: admin" >> environments.yaml
120     echo "        default-series: $opnfvdistro" >> environments.yaml
121
122     cp environments.yaml ~/.juju/
123
124     if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then
125         createresource
126     fi
127
128     #bootstrap the node
129     ./01-bootstrap.sh
130
131     #case default deploy the opnfv platform:
132     ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro
133 }
134
135 #check whether charms are still executing the code even juju-deployer says installed.
136 check_status() {
137     retval=0
138     timeoutiter=0
139     while [ $retval -eq 0 ]; do
140        sleep 30
141        juju status > status.txt
142        if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
143            echo " still executing the reltionship within charms ..."
144            if [ $timeoutiter -ge 60 ]; then
145                retval=1
146            fi
147            timeoutiter=$((timeoutiter+1))
148        else
149            retval=1
150        fi
151     done
152     status=`juju action do heat/0 domain-setup`
153     echo $status
154     juju expose ceph-radosgw
155     #juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
156
157     echo "...... deployment finishing ......."
158 }
159
160 echo "...... deployment started ......"
161 deploy
162
163 check_status
164
165 echo "...... deploy public api proxy ......"
166
167 if [ "$opnfvlab" == "orangepod1" ] && [ "$opnfvsdn" == "nosdn" ]; then # only for first test phase
168     PUB_API_NET=$(grep floating-ip-range ./labconfig.yaml |cut -d/ -f2)
169     PUB_API_IP=$(grep public-api-ip ./labconfig.yaml |cut -d: -f2)
170     juju run --unit nodes/0 "sudo ip a a ${PUB_API_IP}/${PUB_API_NET} dev br-ex"
171     juju run --unit nodes/0 "sudo ip l set dev br-ex up"
172     python genPublicAPIProxyBundle.py -l labconfig.yaml > haproxy.bundle.yaml
173     juju-deployer -vW -d -t 7200 -r 5 -c haproxy.bundle.yaml haproxy
174 fi
175
176 echo "...... deployment finished  ......."
177
178 ./openstack.sh "$opnfvsdn" || true
179 sudo ../juju/get-cloud-images || true
180 ../juju/joid-configure-openstack || true
181
182 echo "...... finished  ......."