blob: 9dada99bc082d1852e7b084ae2fdc136c8ddaa65 [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
Gary Wud95bf2b2019-06-21 15:35:18 -070023echo "__nfs_ip_addr__" > /opt/config/nfs_ip_addr.txt
Gary Wu950a3232019-03-26 13:08:29 -070024echo "__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
Gary Wu950a3232019-03-26 13:08:29 -070038echo "__kubectl_version__" > /opt/config/kubectl_version.txt
39echo "__helm_version__" > /opt/config/helm_version.txt
40echo "__helm_deploy_delay__" > /opt/config/helm_deploy_delay.txt
41echo "__mtu__" > /opt/config/mtu.txt
42echo "__portal_hostname__" > /opt/config/portal_hostname.txt
43
44cat <<EOF > /opt/config/integration-override.yaml
45__integration_override_yaml__
46EOF
47sed -i 's/\_\_portal_hostname__/__portal_hostname__/g' /opt/config/integration-override.yaml
48sed -i 's/\_\_public_net_id__/__public_net_id__/g' /opt/config/integration-override.yaml
49sed -i 's|\_\_oam_network_cidr__|__oam_network_cidr__|g' /opt/config/integration-override.yaml
50sed -i 's/\_\_oam_network_id__/__oam_network_id__/g' /opt/config/integration-override.yaml
51sed -i 's/\_\_oam_subnet_id__/__oam_subnet_id__/g' /opt/config/integration-override.yaml
52sed -i 's/\_\_sec_group__/__sec_group__/g' /opt/config/integration-override.yaml
Gary Wud95bf2b2019-06-21 15:35:18 -070053sed -i 's/\_\_nfs_ip_addr__/__nfs_ip_addr__/g' /opt/config/integration-override.yaml
Gary Wu950a3232019-03-26 13:08:29 -070054sed -i 's/\_\_k8s_01_vm_ip__/__k8s_01_vm_ip__/g' /opt/config/integration-override.yaml
55sed -i 's/\_\_docker_proxy__/__docker_proxy__/g' /opt/config/integration-override.yaml
56cp /opt/config/integration-override.yaml /root
57cat /root/integration-override.yaml
58
59mkdir -p /etc/docker
60if [ ! -z "__docker_proxy__" ]; then
61 cat > /etc/docker/daemon.json <<EOF
62{
63 "mtu": __mtu__,
64 "insecure-registries" : ["__docker_proxy__"]
65}
66EOF
67else
68 cat > /etc/docker/daemon.json <<EOF
69{
70 "mtu": __mtu__
71}
72EOF
73fi
74if [ ! -z "__apt_proxy__" ]; then
75 cat > /etc/apt/apt.conf.d/30proxy<<EOF
76Acquire::http { Proxy "http://__apt_proxy__"; };
77Acquire::https::Proxy "DIRECT";
78EOF
79fi
80
81# workaround for OpenStack intermittent failure to change default apt mirrors
82sed -i 's|http://archive.ubuntu.com|http://nova.clouds.archive.ubuntu.com|g' /etc/apt/sources.list
83
84while ! hash jq &> /dev/null; do
85 apt-get -y update
Gary Wu0bc69832019-03-27 13:58:46 -070086 apt-get -y install curl jq make nfs-kernel-server moreutils
Gary Wu950a3232019-03-26 13:08:29 -070087 sleep 10
88done
89
90mkdir -p /dockerdata-nfs
91
Gary Wu950a3232019-03-26 13:08:29 -070092# update and initialize git
Gary Wud95bf2b2019-06-21 15:35:18 -070093git config --global user.email root@nfs
94git config --global user.name root@nfs
Gary Wu950a3232019-03-26 13:08:29 -070095git config --global log.decorate auto
96
97# version control the persistence volume to see what's happening
98chmod 777 /dockerdata-nfs/
99chown nobody:nogroup /dockerdata-nfs/
100cd /dockerdata-nfs/
101git init
Gary Wu950a3232019-03-26 13:08:29 -0700102git add -A
103git commit -m "initial commit"
104
105# export NFS mount
106echo "/dockerdata-nfs *(rw,fsid=1,async,no_root_squash,no_subtree_check)" | tee /etc/exports
Gary Wu950a3232019-03-26 13:08:29 -0700107exportfs -a
108systemctl restart nfs-kernel-server
109
Gary Wu0bc69832019-03-27 13:58:46 -0700110
111
Gary Wu950a3232019-03-26 13:08:29 -0700112cd ~
113
114# install kubectl __kubectl_version__
115curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v__kubectl_version__/bin/linux/amd64/kubectl
116chmod +x ./kubectl
117sudo mv ./kubectl /usr/local/bin/kubectl
Gary Wu0bc69832019-03-27 13:58:46 -0700118mkdir -p ~/.kube
Gary Wu950a3232019-03-26 13:08:29 -0700119
120# install helm __helm_version__
121mkdir -p helm
122pushd helm
123wget -q http://storage.googleapis.com/kubernetes-helm/helm-v__helm_version__-linux-amd64.tar.gz
124tar -zxvf helm-v__helm_version__-linux-amd64.tar.gz
125sudo cp linux-amd64/helm /usr/local/bin/helm
126popd
127
Gary Wu950a3232019-03-26 13:08:29 -0700128
129
130
Gary Wu0bc69832019-03-27 13:58:46 -0700131# Clone OOM repo
Gary Wu950a3232019-03-26 13:08:29 -0700132cd ~
Gary Wuabf01f72019-04-30 08:08:28 -0700133git clone --recurse-submodules -b __oom_gerrit_branch__ https://gerrit.onap.org/r/oom
Gary Wu950a3232019-03-26 13:08:29 -0700134cd oom
135if [ ! -z "__oom_gerrit_refspec__" ]; then
136 git fetch https://gerrit.onap.org/r/oom __oom_gerrit_refspec__
137 git checkout FETCH_HEAD
138fi
139git checkout -b workarounds
140git log -1
141
Gary Wu0bc69832019-03-27 13:58:46 -0700142# Clone integration repo
Gary Wu950a3232019-03-26 13:08:29 -0700143cd ~
144git clone -b __integration_gerrit_branch__ https://gerrit.onap.org/r/integration
145cd integration
146if [ ! -z "__integration_gerrit_refspec__" ]; then
147 git fetch https://gerrit.onap.org/r/integration __integration_gerrit_refspec__
148 git checkout FETCH_HEAD
149fi
150
151
152if [ ! -z "__docker_manifest__" ]; then
153 cd version-manifest/src/main/scripts
154 ./update-oom-image-versions.sh ../resources/__docker_manifest__ ~/oom/
155fi
156
157cd ~/oom
158git diff
Gary Wu7e835452019-04-30 10:57:51 -0700159git submodule foreach --recursive 'git commit -a -m "apply manifest versions" || :'
Gary Wu950a3232019-03-26 13:08:29 -0700160git commit -a -m "apply manifest versions"
161
162cd ~/oom
163# workaround to change onap portal cookie domain
Gary Wua7f1a942019-04-15 09:09:20 -0700164#sed -i "s/^cookie_domain.*=.*/cookie_domain = __portal_hostname__/g" ./kubernetes/portal/charts/portal-app/resources/config/deliveries/properties/ONAPPORTAL/system.properties
165#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 -0700166git diff
167git commit -a -m "set portal cookie domain"
168
169git tag -a "deploy0" -m "initial deployment"
170
171
Gary Wu0bc69832019-03-27 13:58:46 -0700172
173
174
175
176
177# wait for /root/.kube/config to show up; will be placed by deploy script after RKE completes
178while [ ! -e /root/.kube/config ]; do
179 sleep 1m
180done
181
182
183NAMESPACE=onap
184export KUBECONFIG=/root/.kube/config
185kubectl config set-context $(kubectl config current-context) --namespace=$NAMESPACE
186kubectl config view
187
188
189# Enable auto-completion for kubectl
190echo "source <(kubectl completion bash)" >> ~/.bashrc
191
192
193until [ $(kubectl get cs | tail -n +2 | grep -c Healthy) -ge 5 ]; do
194 sleep 1m
195done
196
197
198# install tiller/helm
Gary Wu950a3232019-03-26 13:08:29 -0700199kubectl -n kube-system create serviceaccount tiller
200kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
201helm init --service-account tiller
202kubectl -n kube-system rollout status deploy/tiller-deploy
Gary Wu950a3232019-03-26 13:08:29 -0700203helm serve &
204sleep 10
Gary Wu0bc69832019-03-27 13:58:46 -0700205
206# Make ONAP helm charts
207cd ~/oom/kubernetes/
Gary Wu950a3232019-03-26 13:08:29 -0700208helm repo add local http://127.0.0.1:8879
209helm repo list
210make all
211helm search -l | grep local
212
213# install helm deploy plugin
214rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
215# temporary workaround to throttle the helm deploy to alleviate startup disk contention issues
216if [ ! -z "__helm_deploy_delay__" ]; then
217 sed -i "/\^enabled:/a\ echo sleep __helm_deploy_delay__\n sleep __helm_deploy_delay__" ~/.helm/plugins/deploy/deploy.sh
Gary Wua56df522019-06-07 00:34:43 -0700218 sed -i 's/for subchart in \*/for subchart in aaf cassandra mariadb-galera dmaap */' ~/.helm/plugins/deploy/deploy.sh
Gary Wu950a3232019-03-26 13:08:29 -0700219fi
220
Gary Wu0bc69832019-03-27 13:58:46 -0700221# Deploy ONAP
Gary Wu950a3232019-03-26 13:08:29 -0700222helm deploy dev local/onap -f ~/oom/kubernetes/onap/resources/environments/public-cloud.yaml -f ~/integration-override.yaml --namespace $NAMESPACE --verbose
223
224# re-install original helm deploy plugin
225rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
226
227helm list
228
229
230
231# Check ONAP status:
232sleep 10
233kubectl get pods --all-namespaces
234kubectl get nodes
235kubectl top nodes