blob: f8997c96f0a63ddcaceae11eeb208705d2504b84 [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 Wu9bb778b2019-06-21 16:16:18 -070023echo "__nfs_volume_id__" > /opt/config/nfs_volume_id.txt
Gary Wud95bf2b2019-06-21 15:35:18 -070024echo "__nfs_ip_addr__" > /opt/config/nfs_ip_addr.txt
Gary Wu9bb778b2019-06-21 16:16:18 -070025echo "__nfs_private_ip_addr__" > /opt/config/nfs_private_ip_addr.txt
Gary Wu950a3232019-03-26 13:08:29 -070026echo "__k8s_vm_ips__" > /opt/config/k8s_vm_ips.txt
27echo "__k8s_private_ips__" > /opt/config/k8s_private_ips.txt
28echo "__public_net_id__" > /opt/config/public_net_id.txt
29echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt
30echo "__oam_network_id__" > /opt/config/oam_network_id.txt
31echo "__oam_subnet_id__" > /opt/config/oam_subnet_id.txt
32echo "__sec_group__" > /opt/config/sec_group.txt
33echo "__integration_gerrit_branch__" > /opt/config/integration_gerrit_branch.txt
34echo "__integration_gerrit_refspec__" > /opt/config/integration_gerrit_refspec.txt
35echo "__oom_gerrit_branch__" > /opt/config/oom_gerrit_branch.txt
36echo "__oom_gerrit_refspec__" > /opt/config/oom_gerrit_refspec.txt
Gary Wu950a3232019-03-26 13:08:29 -070037echo "__docker_proxy__" > /opt/config/docker_proxy.txt
38echo "__docker_version__" > /opt/config/docker_version.txt
Gary Wu950a3232019-03-26 13:08:29 -070039echo "__kubectl_version__" > /opt/config/kubectl_version.txt
40echo "__helm_version__" > /opt/config/helm_version.txt
41echo "__helm_deploy_delay__" > /opt/config/helm_deploy_delay.txt
42echo "__mtu__" > /opt/config/mtu.txt
43echo "__portal_hostname__" > /opt/config/portal_hostname.txt
44
45cat <<EOF > /opt/config/integration-override.yaml
46__integration_override_yaml__
47EOF
48sed -i 's/\_\_portal_hostname__/__portal_hostname__/g' /opt/config/integration-override.yaml
49sed -i 's/\_\_public_net_id__/__public_net_id__/g' /opt/config/integration-override.yaml
50sed -i 's|\_\_oam_network_cidr__|__oam_network_cidr__|g' /opt/config/integration-override.yaml
51sed -i 's/\_\_oam_network_id__/__oam_network_id__/g' /opt/config/integration-override.yaml
52sed -i 's/\_\_oam_subnet_id__/__oam_subnet_id__/g' /opt/config/integration-override.yaml
53sed -i 's/\_\_sec_group__/__sec_group__/g' /opt/config/integration-override.yaml
Gary Wud95bf2b2019-06-21 15:35:18 -070054sed -i 's/\_\_nfs_ip_addr__/__nfs_ip_addr__/g' /opt/config/integration-override.yaml
Gary Wu950a3232019-03-26 13:08:29 -070055sed -i 's/\_\_k8s_01_vm_ip__/__k8s_01_vm_ip__/g' /opt/config/integration-override.yaml
56sed -i 's/\_\_docker_proxy__/__docker_proxy__/g' /opt/config/integration-override.yaml
57cp /opt/config/integration-override.yaml /root
58cat /root/integration-override.yaml
59
60mkdir -p /etc/docker
61if [ ! -z "__docker_proxy__" ]; then
62 cat > /etc/docker/daemon.json <<EOF
63{
64 "mtu": __mtu__,
65 "insecure-registries" : ["__docker_proxy__"]
66}
67EOF
68else
69 cat > /etc/docker/daemon.json <<EOF
70{
71 "mtu": __mtu__
72}
73EOF
74fi
75if [ ! -z "__apt_proxy__" ]; then
76 cat > /etc/apt/apt.conf.d/30proxy<<EOF
77Acquire::http { Proxy "http://__apt_proxy__"; };
78Acquire::https::Proxy "DIRECT";
79EOF
80fi
81
82# workaround for OpenStack intermittent failure to change default apt mirrors
83sed -i 's|http://archive.ubuntu.com|http://nova.clouds.archive.ubuntu.com|g' /etc/apt/sources.list
84
85while ! hash jq &> /dev/null; do
86 apt-get -y update
Gary Wu9bb778b2019-06-21 16:16:18 -070087 apt-get -y install curl jq make nfs-kernel-server moreutils zfsutils-linux
Gary Wu950a3232019-03-26 13:08:29 -070088 sleep 10
89done
90
Gary Wu06b08122019-06-21 23:15:55 -070091sed -i 's/RPCNFSDCOUNT=.*/RPCNFSDCOUNT=32/' /etc/default/nfs-kernel-server
92service nfs-kernel-server restart
93
Gary Wu9bb778b2019-06-21 16:16:18 -070094nfs_volume_dev="/dev/disk/by-id/virtio-$(echo "__nfs_volume_id__" | cut -c -20)"
95
96zpool create -f -m /dockerdata-nfs dockerdata-nfs $nfs_volume_dev
97zfs set compression=lz4 dockerdata-nfs
98zfs set sharenfs="rw=*" dockerdata-nfs
Gary Wu950a3232019-03-26 13:08:29 -070099
Gary Wu950a3232019-03-26 13:08:29 -0700100# update and initialize git
Gary Wud95bf2b2019-06-21 15:35:18 -0700101git config --global user.email root@nfs
102git config --global user.name root@nfs
Gary Wu950a3232019-03-26 13:08:29 -0700103git 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
Gary Wu0bc69832019-03-27 13:58:46 -0700113
114
Gary Wu950a3232019-03-26 13:08:29 -0700115cd ~
116
117# install kubectl __kubectl_version__
118curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v__kubectl_version__/bin/linux/amd64/kubectl
119chmod +x ./kubectl
120sudo mv ./kubectl /usr/local/bin/kubectl
Gary Wu0bc69832019-03-27 13:58:46 -0700121mkdir -p ~/.kube
Gary Wu950a3232019-03-26 13:08:29 -0700122
123# install helm __helm_version__
124mkdir -p helm
125pushd helm
126wget -q http://storage.googleapis.com/kubernetes-helm/helm-v__helm_version__-linux-amd64.tar.gz
127tar -zxvf helm-v__helm_version__-linux-amd64.tar.gz
128sudo cp linux-amd64/helm /usr/local/bin/helm
129popd
130
Gary Wu950a3232019-03-26 13:08:29 -0700131
132
133
Gary Wu0bc69832019-03-27 13:58:46 -0700134# Clone OOM repo
Gary Wu950a3232019-03-26 13:08:29 -0700135cd ~
Gary Wuabf01f72019-04-30 08:08:28 -0700136git clone --recurse-submodules -b __oom_gerrit_branch__ https://gerrit.onap.org/r/oom
Gary Wu950a3232019-03-26 13:08:29 -0700137cd oom
138if [ ! -z "__oom_gerrit_refspec__" ]; then
139 git fetch https://gerrit.onap.org/r/oom __oom_gerrit_refspec__
140 git checkout FETCH_HEAD
141fi
142git checkout -b workarounds
143git log -1
144
Gary Wu0bc69832019-03-27 13:58:46 -0700145# Clone integration repo
Gary Wu950a3232019-03-26 13:08:29 -0700146cd ~
147git clone -b __integration_gerrit_branch__ https://gerrit.onap.org/r/integration
148cd integration
149if [ ! -z "__integration_gerrit_refspec__" ]; then
150 git fetch https://gerrit.onap.org/r/integration __integration_gerrit_refspec__
151 git checkout FETCH_HEAD
152fi
153
154
Gary Wu950a3232019-03-26 13:08:29 -0700155cd ~/oom
156# workaround to change onap portal cookie domain
Gary Wua7f1a942019-04-15 09:09:20 -0700157#sed -i "s/^cookie_domain.*=.*/cookie_domain = __portal_hostname__/g" ./kubernetes/portal/charts/portal-app/resources/config/deliveries/properties/ONAPPORTAL/system.properties
158#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 -0700159git diff
160git commit -a -m "set portal cookie domain"
161
162git tag -a "deploy0" -m "initial deployment"
163
164
Gary Wu0bc69832019-03-27 13:58:46 -0700165
166
167
168
169
170# wait for /root/.kube/config to show up; will be placed by deploy script after RKE completes
171while [ ! -e /root/.kube/config ]; do
172 sleep 1m
173done
174
175
176NAMESPACE=onap
177export KUBECONFIG=/root/.kube/config
178kubectl config set-context $(kubectl config current-context) --namespace=$NAMESPACE
179kubectl config view
180
181
182# Enable auto-completion for kubectl
183echo "source <(kubectl completion bash)" >> ~/.bashrc
184
185
186until [ $(kubectl get cs | tail -n +2 | grep -c Healthy) -ge 5 ]; do
187 sleep 1m
188done
189
190
191# install tiller/helm
Gary Wu950a3232019-03-26 13:08:29 -0700192kubectl -n kube-system create serviceaccount tiller
193kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
194helm init --service-account tiller
195kubectl -n kube-system rollout status deploy/tiller-deploy
Gary Wu950a3232019-03-26 13:08:29 -0700196helm serve &
197sleep 10
Gary Wu0bc69832019-03-27 13:58:46 -0700198
199# Make ONAP helm charts
200cd ~/oom/kubernetes/
Gary Wu950a3232019-03-26 13:08:29 -0700201helm repo add local http://127.0.0.1:8879
202helm repo list
203make all
204helm search -l | grep local
205
206# install helm deploy plugin
207rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
208# temporary workaround to throttle the helm deploy to alleviate startup disk contention issues
209if [ ! -z "__helm_deploy_delay__" ]; then
210 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 -0700211 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 -0700212fi
213
Gary Wu0bc69832019-03-27 13:58:46 -0700214# Deploy ONAP
Gary Wu950a3232019-03-26 13:08:29 -0700215helm deploy dev local/onap -f ~/oom/kubernetes/onap/resources/environments/public-cloud.yaml -f ~/integration-override.yaml --namespace $NAMESPACE --verbose
216
217# re-install original helm deploy plugin
218rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
219
220helm list
221
222
223
224# Check ONAP status:
225sleep 10
226kubectl get pods --all-namespaces
227kubectl get nodes
228kubectl top nodes