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