blob: ff01eb5358056ec662d77ed741c5a2ce31d5d817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
#!/bin/bash
set -ex
#need to put mutiple cases here where decide this bundle to deploy by default use the odl bundle.
# Below parameters are the default and we can according the release
opnfvsdn=nosdn
opnfvtype=nonha
openstack=liberty
opnfvlab=default
opnfvrel=b
read_config() {
opnfvrel=`grep release: deploy.yaml | cut -d ":" -f2`
openstack=`grep openstack: deploy.yaml | cut -d ":" -f2`
opnfvtype=`grep type: deploy.yaml | cut -d ":" -f2`
opnfvlab=`grep lab: deploy.yaml | cut -d ":" -f2`
opnfvsdn=`grep sdn: deploy.yaml | cut -d ":" -f2`
}
usage() { echo "Usage: $0 [-s <nosdn|odl|opencontrail>]
[-t <nonha|ha|tip>]
[-o <juno|liberty>]
[-l <default|intelpod5>]
[-r <a|b>]" 1>&2 exit 1; }
while getopts ":s:t:o:l:h:r:" opt; do
case "${opt}" in
s)
opnfvsdn=${OPTARG}
;;
t)
opnfvtype=${OPTARG}
;;
o)
openstack=${OPTARG}
;;
l)
opnfvlab=${OPTARG}
;;
r)
opnfvrel=${OPTARG}
;;
h)
usage
;;
*)
;;
esac
done
deploy_dep() {
sudo apt-add-repository ppa:juju/stable -y
sudo apt-get update
sudo apt-get install juju git juju-deployer -y
juju init -f
cp environments.yaml ~/.juju/
}
deploy() {
#copy the script which needs to get deployed as part of ofnfv release
echo "...... deploying now ......"
echo " " >> environments.yaml
echo " enable-os-refresh-update: false" >> environments.yaml
echo " enable-os-upgrade: false" >> environments.yaml
echo " admin-secret: admin" >> environments.yaml
echo " default-series: trusty" >> environments.yaml
cp environments.yaml ~/.juju/
cp ./$opnfvsdn/01-deploybundle.sh ./01-deploybundle.sh
./00-bootstrap.sh
#case default:
./01-deploybundle.sh $opnfvtype $openstack $opnfvlab
}
check_status() {
retval=0
timeoutiter=0
while [ $retval -eq 0 ]; do
sleep 30
juju status > status.txt
if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
echo " still executing the reltionship within charms ..."
if [ $timeoutiter -ge 60 ]; then
retval=1
fi
timeoutiter=$((timeoutiter+1))
else
retval=1
fi
done
echo "...... deployment finishing ......."
}
configOpenrc()
{
echo" " > ./cloud/admin-openrc
echo "export OS_USERNAME=$1" >> ./cloud/admin-openrc
echo "export OS_PASSWORD=$2" >> ./cloud/admin-openrc
echo "export OS_TENANT_NAME=$3" >> ./cloud/admin-openrc
echo "export OS_AUTH_URL=$4" >> ./cloud/admin-openrc
echo "export OS_REGION_NAME=$5" >> ./cloud/admin-openrc
}
unitAddress()
{
juju status | python -c "import yaml; import sys; print yaml.load(sys.stdin)[\"services\"][\"$1\"][\"units\"][\"$1/$2\"][\"public-address\"]" 2> /dev/null
}
createopenrc()
{
mkdir -m 0700 -p cloud
controller_address=$(unitAddress keystone 0)
configOpenrc admin openstack admin http://$controller_address:5000/v2.0 Canonical
chmod 0600 cloud/admin-openrc
}
if [ "$#" -eq 0 ]; then
echo "This installtion will use deploy.yaml"
read_config
fi
echo "...... deployment started ......"
#deploy_dep
deploy
check_status
echo "...... deployment finished ......."
echo "...... creating OpenRc file for consuming by various user ......."
createopenrc
echo "...... finished ......."
|