patch not to remove swift API.
[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 if [ -f ./deployconfig.yaml ];then
11     EXTERNAL_NETWORK=`grep floating-ip-range deployconfig.yaml | cut -d ' ' -f 4 `
12
13     # split EXTERNAL_NETWORK=first ip;last ip; gateway;network
14
15     EXTNET=(${EXTERNAL_NETWORK//,/ })
16
17     EXTNET_FIP=${EXTNET[0]}
18     EXTNET_LIP=${EXTNET[1]}
19     EXTNET_GW=${EXTNET[2]}
20     EXTNET_NET=${EXTNET[3]}
21     EXTNET_PORT=`grep "ext-port" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
22     ADMNET_GW=`grep "admNetgway" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
23     API_FQDN=`grep "os-domain-name" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
24 fi
25
26 # launch eth on computer nodes and remove default gw route
27 launch_eth() {
28     computer_list=$(juju status --format short | grep -Eo 'nova-compute/[0-9]')
29     for node in $computer_list; do
30         echo "node name is ${node}"
31         juju ssh $node "sudo ifconfig $EXTNET_PORT up"
32         #juju ssh $node "sudo route del default gw $ADMNET_GW"
33     done
34 }
35
36 # Update gateway mac to onos for l3 function
37 update_gw_mac() {
38     ## get gateway mac
39     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})'")
40     ## set external gateway mac in onos
41     juju set onos-controller gateway-mac=$EXTNET_GW_MAC
42 }
43
44 unitAddress() {
45         juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null
46 }
47
48 unitMachine() {
49         juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"machine\"]" 2> /dev/null
50 }
51
52 keystoneIp() {
53     KEYSTONE=$(juju status keystone |grep public-address|sed -- 's/.*\: //')
54     if [ $(echo $KEYSTONE|wc -w) == 1 ];then
55         echo $KEYSTONE
56     else
57         juju get keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']"
58     fi
59 }
60
61 # create external network and subnet in openstack
62 create_openrc() {
63     mkdir -m 0700 -p cloud
64     keystoneIp=$(keystoneIp)
65     adminPasswd=$(juju get keystone | grep admin-password -A 5 | grep value | awk '{print $2}' 2> /dev/null)
66     configOpenrc admin $adminPasswd admin http://$keystoneIp:5000/v2.0 RegionOne > cloud/admin-openrc
67     chmod 0600 cloud/admin-openrc
68 }
69
70 configOpenrc() {
71 if [ "$API_FQDN" != "''" ]; then
72     cat <<-EOF
73         export OS_USERNAME=$1
74         export OS_PASSWORD=$2
75         export OS_TENANT_NAME=$3
76         export OS_AUTH_URL=$4
77         export OS_REGION_NAME=$5
78         export OS_ENDPOINT_TYPE='internalURL'
79         export CINDER_ENDPOINT_TYPE='internalURL'
80         export GLANCE_ENDPOINT_TYPE='internalURL'
81         export KEYSTONE_ENDPOINT_TYPE='internalURL'
82         export NEUTRON_ENDPOINT_TYPE='internalURL'
83         export NOVA_ENDPOINT_TYPE='internalURL'
84 EOF
85 else
86     cat <<-EOF
87         export OS_USERNAME=$1
88         export OS_PASSWORD=$2
89         export OS_TENANT_NAME=$3
90         export OS_AUTH_URL=$4
91         export OS_REGION_NAME=$5
92 EOF
93
94 fi
95 }
96
97 if [ "$API_FQDN" != "''" ]; then
98     # Push api fqdn local ip to all /etc/hosts
99     API_FQDN=$(juju get keystone | python -c "import yaml; import sys;\
100         print yaml.load(sys.stdin)['settings']['os-public-hostname']['value']")
101
102     KEYSTONEIP=$(keystoneIp)
103     juju run --all "if grep $API_FQDN /etc/hosts > /dev/null; then \
104                         echo 'API FQDN already present'; \
105                     else \
106                         sudo sh -c 'echo $KEYSTONEIP $API_FQDN >> /etc/hosts'; \
107                         echo 'API FQDN injected'; \
108                     fi"
109
110     #change in jumphost as well as below commands will run on jumphost
111
112     if grep $API_FQDN /etc/hosts; then
113         echo 'API FQDN already present'
114     else
115         sudo sh -c "echo $KEYSTONEIP $API_FQDN >> /etc/hosts"
116         echo 'API FQDN injected'
117     fi
118 fi
119
120 # Create an load openrc
121 create_openrc
122
123 . ./cloud/admin-openrc
124
125 ##
126 ## removing the swift API endpoint which is created by radosgw.
127 ## one option is not to used radosgw and other one is remove endpoint.
128 ##
129
130 #echo "Removing swift endpoint and service"
131 #swift_service_id=$(openstack service list | grep swift | cut -d ' ' -f 2)
132 #swift_endpoint_id=$(openstack endpoint list | grep swift | cut -d ' ' -f 2)
133 #openstack endpoint delete $swift_endpoint_id
134 #openstack service delete $swift_service_id
135
136 ##
137 ## Create external subnet Network
138 ##
139
140 #neutron net-create ext-net --shared --router:external=True
141 neutron net-show ext-net > /dev/null 2>&1 || neutron net-create ext-net --router:external=True
142
143 if [ "onos" == "$1" ]; then
144     launch_eth
145     neutron subnet-show ext-subnet > /dev/null 2>&1 || neutron subnet-create ext-net \
146        --name ext-subnet --allocation-pool start=$EXTNET_FIP,end=$EXTNET_LIP \
147        --disable-dhcp --gateway $EXTNET_GW --dns-nameserver 8.8.8.8 $EXTNET_NET
148     #neutron subnet-create ext-net --name ext-subnet $EXTNET_NET
149     #update_gw_mac
150 else
151     neutron subnet-show ext-subnet > /dev/null 2>&1 || neutron subnet-create ext-net \
152        --name ext-subnet --allocation-pool start=$EXTNET_FIP,end=$EXTNET_LIP \
153        --disable-dhcp --gateway $EXTNET_GW --dns-nameserver 8.8.8.8 $EXTNET_NET
154 fi
155
156
157 # Create Congress datasources
158 sudo apt-get install -y python-congressclient
159
160 openstack congress datasource create nova "nova" \
161   --config username=$OS_USERNAME \
162   --config tenant_name=$OS_TENANT_NAME \
163   --config password=$OS_PASSWORD \
164   --config auth_url=http://$keystoneIp:5000/v2.0
165 openstack congress datasource create neutronv2 "neutronv2" \
166   --config username=$OS_USERNAME \
167   --config tenant_name=$OS_TENANT_NAME \
168   --config password=$OS_PASSWORD \
169   --config auth_url=http://$keystoneIp:5000/v2.0
170 openstack congress datasource create ceilometer "ceilometer" \
171   --config username=$OS_USERNAME \
172   --config tenant_name=$OS_TENANT_NAME \
173   --config password=$OS_PASSWORD \
174   --config auth_url=http://$keystoneIp:5000/v2.0
175 openstack congress datasource create cinder "cinder" \
176   --config username=$OS_USERNAME \
177   --config tenant_name=$OS_TENANT_NAME \
178   --config password=$OS_PASSWORD \
179   --config auth_url=http://$keystoneIp:5000/v2.0
180 openstack congress datasource create glancev2 "glancev2" \
181   --config username=$OS_USERNAME \
182   --config tenant_name=$OS_TENANT_NAME \
183   --config password=$OS_PASSWORD \
184   --config auth_url=http://$keystoneIp:5000/v2.0
185 openstack congress datasource create keystone "keystone" \
186   --config username=$OS_USERNAME \
187   --config tenant_name=$OS_TENANT_NAME \
188   --config password=$OS_PASSWORD \
189   --config auth_url=http://$keystoneIp:5000/v2.0
190