3c8f9757e35a860dae4905bf7be0e6d64b881e14
[joid.git] / ci / openstack.sh
1 #!/bin/bash -ex
2 ##############################################################################
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 ##############################################################################
8
9 set -ex
10
11 source common/tools.sh
12
13 #./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
14
15 opnfvsdn=$1
16 opnfvlab=$2
17 opnfvdistro=$3
18 opnfvos=$4
19
20 if [ -f ./deployconfig.yaml ];then
21     EXTERNAL_NETWORK=`grep floating-ip-range deployconfig.yaml | cut -d ' ' -f 4 `
22
23     # split EXTERNAL_NETWORK=first ip;last ip; gateway;network
24
25     EXTNET=(${EXTERNAL_NETWORK//,/ })
26
27     EXTNET_FIP=${EXTNET[0]}
28     EXTNET_LIP=${EXTNET[1]}
29     EXTNET_GW=${EXTNET[2]}
30     EXTNET_NET=${EXTNET[3]}
31     EXTNET_PORT=`grep "ext-port" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
32     ADMNET_GW=`grep "admNetgway" 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     juju config onos-controller gateway-mac=$EXTNET_GW_MAC
51 }
52
53 unitAddress() {
54     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
55 }
56
57 unitMachine() {
58     juju status --format yaml | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"applications\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null
59 }
60
61 keystoneIp() {
62     if [ $(juju status keystone --format=short | grep " keystone"|wc -l) == 1 ];then
63         unitAddress keystone 0
64     else
65         juju config keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" | cut -d " " -f 1
66     fi
67 }
68
69 # create external network and subnet in openstack
70 create_openrc() {
71     echo_info "Creating the openrc (OpenStack client environment scripts)"
72
73     mkdir -m 0700 -p cloud
74     keystoneIp=$(keystoneIp)
75     adminPasswd=$(juju config keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['admin-password']['value']" | cut -d " " -f 1)
76
77     v3api=`juju config keystone  preferred-api-version`
78
79     if [[ "$v3api" == "3" ]]; then
80         configOpenrc admin $adminPasswd admin http://$keystoneIp:5000/v3 RegionOne publicURL > ~/joid_config/admin-openrc
81         chmod 0600 ~/joid_config/admin-openrc
82         source ~/joid_config/admin-openrc
83         projectid=`openstack project show admin -c id -f value`
84         projectdomainid=`openstack domain show admin_domain -c id -f value`
85         userdomainid=`openstack user show admin -c domain_id -f value`
86         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`
87         configOpenrc admin $adminPasswd admin $urlapi RegionOne > ~/joid_config/admin-openrc
88     else
89         configOpenrc2 admin $adminPasswd admin http://$keystoneIp:5000/v2.0 RegionOne > ~/joid_config/admin-openrc
90         chmod 0600 ~/joid_config/admin-openrc
91     fi
92 }
93
94 configOpenrc2() {
95 cat <<-EOF
96 export SERVICE_ENDPOINT=$4
97 unset SERVICE_TOKEN
98 unset SERVICE_ENDPOINT
99 export OS_USERNAME=$1
100 export OS_PASSWORD=$2
101 export OS_TENANT_NAME=$3
102 export OS_AUTH_URL=$4
103 export OS_REGION_NAME=$5
104 EOF
105 }
106
107 configOpenrc() {
108 cat <<-EOF
109 #export OS_NO_CACHE='true'
110 export OS_AUTH_URL=$4
111 export OS_USER_DOMAIN_NAME=admin_domain
112 export OS_PROJECT_DOMAIN_NAME=admin_domain
113 export OS_USERNAME=$1
114 export OS_TENANT_NAME=$3
115 export OS_PROJECT_NAME=$3
116 export OS_PASSWORD=$2
117 export OS_IDENTITY_API_VERSION=3
118 export OS_REGION_NAME=$5
119 export OS_INTERFACE=public
120 #export OS_INSECURE=true
121 #export OS_CASSL=~/joid_config/ca.pem
122 EOF
123 }
124
125 # Create an load openrc
126 create_openrc
127
128 . ~/joid_config/admin-openrc
129
130 ##
131 ## removing the swift API endpoint which is created by radosgw.
132 ## one option is not to used radosgw and other one is remove endpoint.
133 ##
134
135 #echo "Removing swift endpoint and service"
136 #swift_service_id=$(openstack service list | grep swift | cut -d ' ' -f 2)
137 #swift_endpoint_id=$(openstack endpoint list | grep swift | cut -d ' ' -f 2)
138 #openstack endpoint delete $swift_endpoint_id
139 #openstack service delete $swift_service_id
140
141 ##
142 ## Create external subnet Network
143 ##
144
145 echo_info "Creating external network with neutron"
146
147 if [ "onos" == "$opnfvsdn" ]; then
148     launch_eth
149     openstack network show ext-net > /dev/null 2>&1 || openstack network create \
150                                                    --external --share --enable ext-net
151 elif [ "ocl" == "$opnfvsdn" ]; then
152     openstack network show ext-net > /dev/null 2>&1 || openstack network create \
153                                                    --external --share --enable ext-net
154
155 else
156     openstack network show ext-net > /dev/null 2>&1 || openstack network create \
157                                                    --provider-network-type flat \
158                                                    --provider-physical-network physnet1 \
159                                                    --external --share --enable  ext-net
160 fi
161
162 openstack subnet show ext-subnet > /dev/null 2>&1 || openstack subnet create \
163    --allocation-pool start=$EXTNET_FIP,end=$EXTNET_LIP \
164    --no-dhcp --gateway $EXTNET_GW --network ext-net --subnet-range $EXTNET_NET ext-subnet
165
166 # Ocl can push packets to the fabric network in order to reach a gateway if BGP/L3VPN hasn't been configured.
167 if [ "ocl" == "$opnfvsdn" ]; then
168     echo "Creating simple gateway functions on ocl vRouters"
169       juju run --application nova-compute "sudo \
170         python /opt/contrail/utils/provision_vgw_interface.py \
171          --oper create --interface vgw1 --subnets $EXTNET_NET --routes 0.0.0.0/24 --vrf default-domain:admin:ext-net:ext-net" 
172 fi
173
174 #congress team is not updating and supporting charm anymore so defer it.
175
176 # Create Congress datasources
177 #sudo apt-get install -y python-congressclient
178
179 #openstack congress datasource create nova "nova" \
180 #  --config username=$OS_USERNAME \
181 #  --config tenant_name=$OS_TENANT_NAME \
182 #  --config password=$OS_PASSWORD \
183 #  --config auth_url=http://$keystoneIp:5000/v2.0
184 #openstack congress datasource create neutronv2 "neutronv2" \
185 #  --config username=$OS_USERNAME \
186 #  --config tenant_name=$OS_TENANT_NAME \
187 #  --config password=$OS_PASSWORD \
188 #  --config auth_url=http://$keystoneIp:5000/v2.0
189 #openstack congress datasource create ceilometer "ceilometer" \
190 #  --config username=$OS_USERNAME \
191 #  --config tenant_name=$OS_TENANT_NAME \
192 #  --config password=$OS_PASSWORD \
193 #  --config auth_url=http://$keystoneIp:5000/v2.0
194 #openstack congress datasource create cinder "cinder" \
195 #  --config username=$OS_USERNAME \
196 #  --config tenant_name=$OS_TENANT_NAME \
197 #  --config password=$OS_PASSWORD \
198 #  --config auth_url=http://$keystoneIp:5000/v2.0
199 #openstack congress datasource create glancev2 "glancev2" \
200 #  --config username=$OS_USERNAME \
201 #  --config tenant_name=$OS_TENANT_NAME \
202 #  --config password=$OS_PASSWORD \
203 #  --config auth_url=http://$keystoneIp:5000/v2.0
204 #openstack congress datasource create keystone "keystone" \
205 #  --config username=$OS_USERNAME \
206 #  --config tenant_name=$OS_TENANT_NAME \
207 #  --config password=$OS_PASSWORD \
208 #  --config auth_url=http://$keystoneIp:5000/v2.0