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
17 jujuver=`juju --version`
20 opnfvrel=`grep release: deploy.yaml | cut -d ":" -f2`
21 openstack=`grep openstack: deploy.yaml | cut -d ":" -f2`
22 opnfvtype=`grep type: deploy.yaml | cut -d ":" -f2`
23 opnfvlab=`grep lab: deploy.yaml | cut -d ":" -f2`
24 opnfvsdn=`grep sdn: deploy.yaml | cut -d ":" -f2`
27 usage() { echo "Usage: $0 [-s <nosdn|odl|opencontrail>]
30 [-l <default|intelpod5>]
31 [-f <ipv6,dpdk,lxd,dvr>]
34 [-r <a|b>]" 1>&2 exit 1; }
36 while getopts ":s:t:o:l:h:r:f:d:a:" opt; do
54 opnfvfeature=${OPTARG}
70 #by default maas creates two VMs in case of three more VM needed.
72 maas_ip=`grep " ip_address" deployment.yaml | cut -d " " -f 10`
73 apikey=`grep maas-oauth: environments.yaml | cut -d "'" -f 2`
74 maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
76 nodeexist=`maas maas nodes list hostname=node3-control`
78 if [ $nodeexist != *node3* ]; then
79 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
81 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
83 node3controlmac=`grep "mac address" node3-control | head -1 | cut -d "'" -f 2`
84 node4controlmac=`grep "mac address" node4-control | head -1 | cut -d "'" -f 2`
86 sudo virsh -c qemu:///system define --file node3-control
87 sudo virsh -c qemu:///system define --file node4-control
89 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 `
91 maas maas tag update-nodes control add=$controlnodeid
93 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 `
95 maas maas tag update-nodes control add=$controlnodeid
100 #copy the files and create extra resources needed for HA deployment
101 # in case of default VM labs.
104 if [ ! -f ./environments.yaml ] && [ -e ~/.juju/environments.yaml ]; then
105 cp ~/.juju/environments.yaml ./environments.yaml
106 elif [ ! -f ./environments.yaml ] && [ -e ~/joid_config/environments.yaml ]; then
107 cp ~/joid_config/environments.yaml ./environments.yaml
109 if [ ! -f ./deployment.yaml ] && [ -e ~/.juju/deployment.yaml ]; then
110 cp ~/.juju/deployment.yaml ./deployment.yaml
111 elif [ ! -f ./deployment.yaml ] && [ -e ~/joid_config/deployment.yaml ]; then
112 cp ~/joid_config/deployment.yaml ./deployment.yaml
114 if [ ! -f ./labconfig.yaml ] && [ -e ~/.juju/labconfig.yaml ]; then
115 cp ~/.juju/labconfig.yaml ./labconfig.yaml
116 elif [ ! -f ./labconfig.yaml ] && [ -e ~/joid_config/labconfig.yaml ]; then
117 cp ~/joid_config/labconfig.yaml ./labconfig.yaml
119 if [ ! -f ./deployconfig.yaml ] && [ -e ~/.juju/deployconfig.yaml ]; then
120 cp ~/.juju/deployconfig.yaml ./deployconfig.yaml
121 elif [ ! -f ./deployconfig.yaml ] && [ -e ~/joid_config/deployconfig.yaml ]; then
122 cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
125 #copy the script which needs to get deployed as part of ofnfv release
126 echo "...... deploying now ......"
127 echo " " >> environments.yaml
128 echo " enable-os-refresh-update: false" >> environments.yaml
129 echo " enable-os-upgrade: false" >> environments.yaml
130 echo " admin-secret: admin" >> environments.yaml
131 echo " default-series: $opnfvdistro" >> environments.yaml
133 cp environments.yaml ~/.juju/
134 cp environments.yaml ~/joid_config/
136 if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then
143 if [[ "$jujuver" > "2" ]]; then
144 juju model-config default-series=$opnfvdistro enable-os-refresh-update=false enable-os-upgrade=false
147 #case default deploy the opnfv platform:
148 ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro
151 #check whether charms are still executing the code even juju-deployer says installed.
155 while [ $retval -eq 0 ]; do
157 juju status > status.txt
158 if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
159 echo " still executing the reltionship within charms ..."
160 if [ $timeoutiter -ge 120 ]; then
163 timeoutiter=$((timeoutiter+1))
169 juju expose ceph-radosgw
170 #juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
172 echo "...... deployment finishing ......."
175 echo "...... deployment started ......"
180 echo "...... deployment finished ......."
182 ./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
184 # creating heat domain after puching the public API into /etc/hosts
186 if [[ "$jujuver" > "2" ]]; then
187 status=`juju run-action heat/0 domain-setup`
190 status=`juju action do heat/0 domain-setup`
195 sudo ../juju/get-cloud-images || true
196 ../juju/joid-configure-openstack || true
198 echo "...... finished ......."