ONAP deployment: clone oom repo with submodules
[integration.git] / deployment / heat / onap-rke / rancher_vm_entrypoint.sh
1 #!/bin/bash -x
2 #
3 # Copyright 2018 Huawei Technologies Co., Ltd.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11
12 # allow root login
13 export HOME=/root
14 mkdir -p ~/.ssh
15 cp ~ubuntu/.ssh/authorized_keys ~/.ssh
16
17 export DEBIAN_FRONTEND=noninteractive
18 HOST_IP=$(hostname -I)
19 echo $HOST_IP `hostname` >> /etc/hosts
20 printenv
21
22 mkdir -p /opt/config
23 echo "__rancher_ip_addr__" > /opt/config/rancher_ip_addr.txt
24 echo "__k8s_vm_ips__" > /opt/config/k8s_vm_ips.txt
25 echo "__k8s_private_ips__" > /opt/config/k8s_private_ips.txt
26 echo "__public_net_id__" > /opt/config/public_net_id.txt
27 echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt
28 echo "__oam_network_id__" > /opt/config/oam_network_id.txt
29 echo "__oam_subnet_id__" > /opt/config/oam_subnet_id.txt
30 echo "__sec_group__" > /opt/config/sec_group.txt
31 echo "__integration_gerrit_branch__" > /opt/config/integration_gerrit_branch.txt
32 echo "__integration_gerrit_refspec__" > /opt/config/integration_gerrit_refspec.txt
33 echo "__oom_gerrit_branch__" > /opt/config/oom_gerrit_branch.txt
34 echo "__oom_gerrit_refspec__" > /opt/config/oom_gerrit_refspec.txt
35 echo "__docker_manifest__" > /opt/config/docker_manifest.txt
36 echo "__docker_proxy__" > /opt/config/docker_proxy.txt
37 echo "__docker_version__" > /opt/config/docker_version.txt
38 echo "__kubectl_version__" > /opt/config/kubectl_version.txt
39 echo "__helm_version__" > /opt/config/helm_version.txt
40 echo "__helm_deploy_delay__" > /opt/config/helm_deploy_delay.txt
41 echo "__mtu__" > /opt/config/mtu.txt
42 echo "__portal_hostname__" > /opt/config/portal_hostname.txt
43
44 cat <<EOF > /opt/config/integration-override.yaml
45 __integration_override_yaml__
46 EOF
47 sed -i 's/\_\_portal_hostname__/__portal_hostname__/g' /opt/config/integration-override.yaml
48 sed -i 's/\_\_public_net_id__/__public_net_id__/g' /opt/config/integration-override.yaml
49 sed -i 's|\_\_oam_network_cidr__|__oam_network_cidr__|g' /opt/config/integration-override.yaml
50 sed -i 's/\_\_oam_network_id__/__oam_network_id__/g' /opt/config/integration-override.yaml
51 sed -i 's/\_\_oam_subnet_id__/__oam_subnet_id__/g' /opt/config/integration-override.yaml
52 sed -i 's/\_\_sec_group__/__sec_group__/g' /opt/config/integration-override.yaml
53 sed -i 's/\_\_rancher_ip_addr__/__rancher_ip_addr__/g' /opt/config/integration-override.yaml
54 sed -i 's/\_\_k8s_01_vm_ip__/__k8s_01_vm_ip__/g' /opt/config/integration-override.yaml
55 sed -i 's/\_\_docker_proxy__/__docker_proxy__/g' /opt/config/integration-override.yaml
56 cp /opt/config/integration-override.yaml /root
57 cat /root/integration-override.yaml
58
59 mkdir -p /etc/docker
60 if [ ! -z "__docker_proxy__" ]; then
61     cat > /etc/docker/daemon.json <<EOF
62 {
63   "mtu": __mtu__,
64   "insecure-registries" : ["__docker_proxy__"]
65 }
66 EOF
67 else
68     cat > /etc/docker/daemon.json <<EOF
69 {
70   "mtu": __mtu__
71 }
72 EOF
73 fi
74 if [ ! -z "__apt_proxy__" ]; then
75     cat > /etc/apt/apt.conf.d/30proxy<<EOF
76 Acquire::http { Proxy "http://__apt_proxy__"; };
77 Acquire::https::Proxy "DIRECT";
78 EOF
79 fi
80
81 # workaround for OpenStack intermittent failure to change default apt mirrors
82 sed -i 's|http://archive.ubuntu.com|http://nova.clouds.archive.ubuntu.com|g' /etc/apt/sources.list
83
84 while ! hash jq &> /dev/null; do
85     apt-get -y update
86     apt-get -y install curl jq make nfs-kernel-server moreutils
87     sleep 10
88 done
89
90 mkdir -p /dockerdata-nfs
91
92 # use RAM disk for /dockerdata-nfs for testing
93 if [ "__use_ramdisk__" = "true" ]; then
94     echo "tmpfs /dockerdata-nfs tmpfs noatime,size=75% 1 2" >> /etc/fstab
95     mount /dockerdata-nfs
96 fi
97
98 # update and initialize git
99 git config --global user.email root@rancher
100 git config --global user.name root@rancher
101 git config --global log.decorate auto
102
103 # version control the persistence volume to see what's happening
104 chmod 777 /dockerdata-nfs/
105 chown nobody:nogroup /dockerdata-nfs/
106 cd /dockerdata-nfs/
107 git init
108 git add -A
109 git commit -m "initial commit"
110
111 # export NFS mount
112 echo "/dockerdata-nfs *(rw,fsid=1,async,no_root_squash,no_subtree_check)" | tee /etc/exports
113 exportfs -a
114 systemctl restart nfs-kernel-server
115
116
117
118 cd ~
119
120 # install kubectl __kubectl_version__
121 curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v__kubectl_version__/bin/linux/amd64/kubectl
122 chmod +x ./kubectl
123 sudo mv ./kubectl /usr/local/bin/kubectl
124 mkdir -p ~/.kube
125
126 # install helm __helm_version__
127 mkdir -p helm
128 pushd helm
129 wget -q http://storage.googleapis.com/kubernetes-helm/helm-v__helm_version__-linux-amd64.tar.gz
130 tar -zxvf helm-v__helm_version__-linux-amd64.tar.gz
131 sudo cp linux-amd64/helm /usr/local/bin/helm
132 popd
133
134
135
136
137 # Clone OOM repo
138 cd ~
139 git clone --recurse-submodules -b __oom_gerrit_branch__ https://gerrit.onap.org/r/oom
140 cd oom
141 if [ ! -z "__oom_gerrit_refspec__" ]; then
142     git fetch https://gerrit.onap.org/r/oom __oom_gerrit_refspec__
143     git checkout FETCH_HEAD
144 fi
145 git checkout -b workarounds
146 git log -1
147
148 # Clone integration repo
149 cd ~
150 git clone -b __integration_gerrit_branch__ https://gerrit.onap.org/r/integration
151 cd integration
152 if [ ! -z "__integration_gerrit_refspec__" ]; then
153     git fetch https://gerrit.onap.org/r/integration __integration_gerrit_refspec__
154     git checkout FETCH_HEAD
155 fi
156
157
158 if [ ! -z "__docker_manifest__" ]; then
159     cd version-manifest/src/main/scripts
160     ./update-oom-image-versions.sh ../resources/__docker_manifest__ ~/oom/
161 fi
162
163 cd ~/oom
164 git diff
165 git commit -a -m "apply manifest versions"
166
167 cd ~/oom
168 # workaround to change onap portal cookie domain
169 #sed -i "s/^cookie_domain.*=.*/cookie_domain = __portal_hostname__/g" ./kubernetes/portal/charts/portal-app/resources/config/deliveries/properties/ONAPPORTAL/system.properties
170 #sed -i "s/^cookie_domain.*=.*/cookie_domain = __portal_hostname__/g" ./kubernetes/portal/charts/portal-sdk/resources/config/deliveries/properties/ONAPPORTALSDK/system.properties
171 git diff
172 git commit -a -m "set portal cookie domain"
173
174 git tag -a "deploy0" -m "initial deployment"
175
176
177
178
179
180
181
182 # wait for /root/.kube/config to show up; will be placed by deploy script after RKE completes
183 while [ ! -e /root/.kube/config ]; do
184     sleep 1m
185 done
186
187
188 NAMESPACE=onap
189 export KUBECONFIG=/root/.kube/config
190 kubectl config set-context $(kubectl config current-context) --namespace=$NAMESPACE
191 kubectl config view
192
193
194 # Enable auto-completion for kubectl
195 echo "source <(kubectl completion bash)" >> ~/.bashrc
196
197
198 until [ $(kubectl get cs | tail -n +2 | grep -c Healthy) -ge 5 ]; do
199     sleep 1m
200 done
201
202
203 # install tiller/helm
204 kubectl -n kube-system create serviceaccount tiller
205 kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
206 helm init --service-account tiller
207 kubectl -n kube-system rollout status deploy/tiller-deploy
208 helm serve &
209 sleep 10
210
211 # Make ONAP helm charts
212 cd ~/oom/kubernetes/
213 helm repo add local http://127.0.0.1:8879
214 helm repo list
215 make all
216 helm search -l | grep local
217
218 # install helm deploy plugin
219 rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
220 # temporary workaround to throttle the helm deploy to alleviate startup disk contention issues
221 if [ ! -z "__helm_deploy_delay__" ]; then
222     sed -i "/\^enabled:/a\      echo sleep __helm_deploy_delay__\n      sleep __helm_deploy_delay__" ~/.helm/plugins/deploy/deploy.sh
223 fi
224
225 # Deploy ONAP
226 helm deploy dev local/onap -f ~/oom/kubernetes/onap/resources/environments/public-cloud.yaml -f ~/integration-override.yaml --namespace $NAMESPACE --verbose
227
228 # re-install original helm deploy plugin
229 rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
230
231 helm list
232
233
234
235 # Check ONAP status:
236 sleep 10
237 kubectl get pods --all-namespaces
238 kubectl get nodes
239 kubectl top nodes