Rename juju run --service flag to --application
[joid.git] / ci / openstack.sh
1 #!/bin/bash -ex
2
3 ##############################################################################
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 #./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
11
12 opnfvsdn=$1
13 opnfvlab=$2
14 opnfvdistro=$3
15 opnfvos=$4
16
17 jujuver=`juju --version`
18
19 if [ -f ./deployconfig.yaml ];then
20     EXTERNAL_NETWORK=`grep floating-ip-range deployconfig.yaml | cut -d ' ' -f 4 `
21
22     # split EXTERNAL_NETWORK=first ip;last ip; gateway;network
23
24     EXTNET=(${EXTERNAL_NETWORK//,/ })
25
26     EXTNET_FIP=${EXTNET[0]}
27     EXTNET_LIP=${EXTNET[1]}
28     EXTNET_GW=${EXTNET[2]}
29     EXTNET_NET=${EXTNET[3]}
30     EXTNET_PORT=`grep "ext-port" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
31     ADMNET_GW=`grep "admNetgway" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
32     API_FQDN=`grep "os-domain-name" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
33 fi
34
35 # launch eth on computer nodes and remove default gw route
36 launch_eth() {
37     computer_list=$(juju status --format short | grep -Eo 'nova-compute/[0-9]')
38     for node in $computer_list; do
39         echo "node name is ${node}"
40         juju ssh $node "sudo ifconfig $EXTNET_PORT up"
41         #juju ssh $node "sudo route del default gw $ADMNET_GW"
42     done
43 }
44
45 # Update gateway mac to onos for l3 function
46 update_gw_mac() {
47     ## get gateway mac
48     EXTNET_GW_MAC=$(juju ssh nova-compute/0 "arp -a ${EXTNET_GW} | grep -Eo '([0-9a-fA-F]{2})(([/\s:-][0-9a-fA-F]{2}){5})'")
49     ## set external gateway mac in onos
50     if [[ "$jujuver" < "2" ]]; then
51         juju set onos-controller gateway-mac=$EXTNET_GW_MAC
52     else
53         juju config onos-controller gateway-mac=$EXTNET_GW_MAC
54     fi
55 }
56
57 unitAddress() {
58     if [[ "$jujuver" < "2" ]]; then
59         juju status --format yaml | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null
60     else
61         juju status --format yaml | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"applications\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null
62     fi
63 }
64
65 unitMachine() {
66     if [[ "$jujuver" < "2" ]]; then
67         juju status --format yaml | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null
68     else
69         juju status --format yaml | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"applications\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null
70     fi
71 }
72
73 keystoneIp() {
74     if [ $(juju status keystone --format=short | grep " keystone"|wc -l) == 1 ];then
75         unitAddress keystone 0
76     else
77         if [[ "$jujuver" < "2" ]]; then
78             juju get keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" | cut -d " " -f 1
79         else
80             juju config keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" | cut -d " " -f 1
81         fi
82     fi
83 }
84
85 # create external network and subnet in openstack
86 create_openrc() {
87     mkdir -m 0700 -p cloud
88     keystoneIp=$(keystoneIp)
89     if [[ "$jujuver" < "2" ]]; then
90         adminPasswd=$(juju get keystone | grep admin-password -A 5 | grep value | awk '{print $2}' 2> /dev/null)
91     else
92         adminPasswd=$(juju config keystone | grep admin-password -A 5 | grep value | awk '{print $2}' 2> /dev/null)
93     fi
94
95     v3api=`juju config keystone  preferred-api-version`
96
97     if [[ "$v3api" == "3" ]]; then
98         configOpenrc admin $adminPasswd admin http://$keystoneIp:5000/v3 RegionOne publicURL > ~/joid_config/admin-openrc
99         chmod 0600 ~/joid_config/admin-openrc
100         source ~/joid_config/admin-openrc
101         projectid=`openstack project show admin -c id -f value`
102         projectdomainid=`openstack domain show admin_domain -c id -f value`
103         userdomainid=`openstack user show admin -c domain_id -f value`
104         urlapi=`openstack catalog show keystone --format yaml | python -c "import yaml; import sys; print yaml.load(sys.stdin)['endpoints']" | grep public | cut -d " " -f 4`
105         configOpenrc admin $adminPasswd admin $urlapi RegionOne publicURL $projectid $projectdomainid $userdomainid > ~/joid_config/admin-openrcinternal
106         configOpenrc admin $adminPasswd admin $urlapi RegionOne publicURL $projectid $projectdomainid $userdomainid > ~/joid_config/admin-openrc
107     else
108         configOpenrc2 admin $adminPasswd admin http://$keystoneIp:5000/v2.0 RegionOne > ~/joid_config/admin-openrc
109         chmod 0600 ~/joid_config/admin-openrc
110     fi
111 }
112
113 configOpenrc2() {
114 cat <<-EOF
115 export SERVICE_ENDPOINT=$4
116 unset SERVICE_TOKEN
117 unset SERVICE_ENDPOINT
118 export OS_USERNAME=$1
119 export OS_PASSWORD=$2
120 export OS_TENANT_NAME=$3
121 export OS_AUTH_URL=$4
122 export OS_REGION_NAME=$5
123 EOF
124 }
125
126 configOpenrc() {
127 cat <<-EOF
128 export OS_NO_CACHE='true'
129 export OS_TENANT_NAME=$3
130 #export OS_TENANT_ID=$7
131 export OS_PROJECT_NAME=$3
132 export OS_USERNAME=$1
133 export OS_PASSWORD=$2
134 export OS_IDENTITY_API_VERSION=3
135 export OS_DEFAULT_DOMAIN=admin_domain
136 export OS_USER_DOMAIN_NAME=admin_domain
137 export OS_USER_DOMAIN_ID=$9
138 export OS_PROJECT_DOMAIN_NAME=admin_domain
139 export OS_PROJECT_DOMAIN_ID=$8
140 export OS_AUTH_STRATEGY='keystone'
141 export OS_REGION_NAME=$5
142 export CINDER_ENDPOINT_TYPE=$6
143 export GLANCE_ENDPOINT_TYPE=$6
144 export KEYSTONE_ENDPOINT_TYPE=$6
145 export NOVA_ENDPOINT_TYPE=$6
146 export NEUTRON_ENDPOINT_TYPE=$6
147 export OS_ENDPOINT_TYPE=$6
148 export OS_INTERFACE=public
149 export OS_AUTH_URL=$4
150 EOF
151 }
152
153 if [ "$API_FQDN" != "None" ]; then
154     # Push api fqdn local ip to all /etc/hosts
155     if [[ "$jujuver" < "2" ]]; then
156         API_FQDN=$(juju get keystone | python -c "import yaml; import sys;\
157             print yaml.load(sys.stdin)['settings']['os-public-hostname']['value']")
158     else
159         API_FQDN=$(juju config keystone | python -c "import yaml; import sys;\
160             print yaml.load(sys.stdin)['settings']['os-public-hostname']['value']")
161     fi
162
163
164     KEYSTONEIP=$(keystoneIp)
165     juju run --all "if grep $API_FQDN /etc/hosts > /dev/null; then \
166                         echo 'API FQDN already present'; \
167                     else \
168                         sudo sh -c 'echo $KEYSTONEIP $API_FQDN >> /etc/hosts'; \
169                         echo 'API FQDN injected'; \
170                     fi"
171
172     # remove this enhancement for heat that does not manage endpoints
173     juju run --application=heat "cp /etc/hosts /tmp/hosts ; \
174                              grep -v $API_FQDN /tmp/hosts > /etc/hosts"
175
176     #change in jumphost as well as below commands will run on jumphost
177     if grep $API_FQDN /etc/hosts; then
178         echo 'API FQDN already present'
179     else
180         sudo sh -c "echo $KEYSTONEIP $API_FQDN >> /etc/hosts"
181         echo 'API FQDN injected'
182     fi
183 fi
184
185 # Create an load openrc
186 create_openrc
187
188 . ~/joid_config/admin-openrc
189
190 echo "...... deploy public api proxy ......"
191
192 if ([ "$opnfvlab" == "orangepod1" ] \
193     || [ "$opnfvlab" == "intelpod6" ]) \
194     && [ "$opnfvsdn" == "nosdn" ] \
195     && [ "$API_FQDN" != "None" ]; then # only for first test phase
196     if [ -e ./labconfig.yaml ]; then
197         PUB_API_MASK=$(grep floating-ip-range ./labconfig.yaml |cut -d/ -f2)
198         PUB_API_NET=$(grep floating-ip-range ./labconfig.yaml |cut -d, -f4)
199         PUB_API_IP=$(grep public-api-ip ./labconfig.yaml |cut -d: -f2)
200         if grep "- type: public" ./labconfig.yaml; then
201             # The public network exists on MAAS, so we push the dns record to it
202
203             # Recover maas ips and login to it
204             maas_ip=$(grep " ip_address" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //')
205             maas_pubip=$(grep floating-ip-range ./labconfig.yaml |cut -d, -f4 |perl -pe 's!^(.*)\.\d+/\d+$!$1.5!')
206             apikey=$(grep maas-oauth: environments.yaml | cut -d "'" -f 2)
207             maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
208
209             # Configure maas to add the record
210             CLUSTER_UUID=$(maas ubuntu node-groups list | grep uuid | cut -d\" -f4)
211             PUBLIC_MAAS_IF=$(maas ubuntu node-group-interfaces list $cluster_uuid |\
212                              python -c "import yaml; import sys; cfg=yaml.load(sys.stdin); net_h={net['ip']:net['name'] for net in cfg}; print(net_h['$maas_pubip'])")
213             maas maas node-group-interface update ${CLUSTER_UUID} ${PUBLIC_MAAS_IF} static_ip_range_high=${PUB_API_IP} static_ip_range_low=${PUB_API_IP}
214             maas maas ipaddresses reserve network=${PUB_API_NET} requested_address=${PUB_API_IP} hostname=${API_FQDN}
215             dig ${PUB_API_IP} @${maas_ip} # just for log
216         fi
217         juju run --unit nodes/0 "sudo ip a a ${PUB_API_IP}/${PUB_API_MASK} dev br-ex" || true
218         juju run --unit nodes/0 "sudo ip l set dev br-ex up" || true
219         python genPublicAPIProxyBundle.py -l labconfig.yaml >> bundles.yaml
220         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml $opnfvdistro-"$opnfvos" || true
221     fi
222 fi
223
224 echo "...... deploy end public api proxy ......"
225
226 ##
227 ## removing the swift API endpoint which is created by radosgw.
228 ## one option is not to used radosgw and other one is remove endpoint.
229 ##
230
231 #echo "Removing swift endpoint and service"
232 #swift_service_id=$(openstack service list | grep swift | cut -d ' ' -f 2)
233 #swift_endpoint_id=$(openstack endpoint list | grep swift | cut -d ' ' -f 2)
234 #openstack endpoint delete $swift_endpoint_id
235 #openstack service delete $swift_service_id
236
237 ##
238 ## Create external subnet Network
239 ##
240
241 if [ "onos" == "$opnfvsdn" ]; then
242     launch_eth
243     neutron net-show ext-net > /dev/null 2>&1 || neutron net-create ext-net \
244                                                    --router:external=True
245 else
246     neutron net-show ext-net > /dev/null 2>&1 || neutron net-create ext-net \
247                                                    --router:external=True \
248                                                    --provider:network_type flat \
249                                                    --provider:physical_network physnet1
250 fi
251
252 neutron subnet-show ext-subnet > /dev/null 2>&1 || neutron subnet-create ext-net \
253    --name ext-subnet --allocation-pool start=$EXTNET_FIP,end=$EXTNET_LIP \
254    --disable-dhcp --gateway $EXTNET_GW $EXTNET_NET
255
256 #congress team is not updating and supporting charm anymore so defer it.
257
258 # Create Congress datasources
259 #sudo apt-get install -y python-congressclient
260
261 #openstack congress datasource create nova "nova" \
262 #  --config username=$OS_USERNAME \
263 #  --config tenant_name=$OS_TENANT_NAME \
264 #  --config password=$OS_PASSWORD \
265 #  --config auth_url=http://$keystoneIp:5000/v2.0
266 #openstack congress datasource create neutronv2 "neutronv2" \
267 #  --config username=$OS_USERNAME \
268 #  --config tenant_name=$OS_TENANT_NAME \
269 #  --config password=$OS_PASSWORD \
270 #  --config auth_url=http://$keystoneIp:5000/v2.0
271 #openstack congress datasource create ceilometer "ceilometer" \
272 #  --config username=$OS_USERNAME \
273 #  --config tenant_name=$OS_TENANT_NAME \
274 #  --config password=$OS_PASSWORD \
275 #  --config auth_url=http://$keystoneIp:5000/v2.0
276 #openstack congress datasource create cinder "cinder" \
277 #  --config username=$OS_USERNAME \
278 #  --config tenant_name=$OS_TENANT_NAME \
279 #  --config password=$OS_PASSWORD \
280 #  --config auth_url=http://$keystoneIp:5000/v2.0
281 #openstack congress datasource create glancev2 "glancev2" \
282 #  --config username=$OS_USERNAME \
283 #  --config tenant_name=$OS_TENANT_NAME \
284 #  --config password=$OS_PASSWORD \
285 #  --config auth_url=http://$keystoneIp:5000/v2.0
286 #openstack congress datasource create keystone "keystone" \
287 #  --config username=$OS_USERNAME \
288 #  --config tenant_name=$OS_TENANT_NAME \
289 #  --config password=$OS_PASSWORD \
290 #  --config auth_url=http://$keystoneIp:5000/v2.0