blob: bb0c80a503c3a209ad0fef3ad5a6af31d37900bc [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
Konrad Bańkaa3990d02019-07-30 09:02:42 +020096until [ -b "$nfs_volume_dev" ]; do
97 sleep 1m
98done
99
Brian Freeman1160da42019-08-14 17:28:09 -0500100zpool create -f -m /dockerdata-nfs-z dockerdata-nfs-z $nfs_volume_dev
101zfs set compression=lz4 dockerdata-nfs-z
102zfs set sharenfs="rw=*" dockerdata-nfs-z
103
104
105mkdir -p /dockerdata-nfs
106
107
Gary Wu950a3232019-03-26 13:08:29 -0700108
Gary Wu950a3232019-03-26 13:08:29 -0700109# update and initialize git
Konrad Bańkaa3990d02019-07-30 09:02:42 +0200110git config --system user.email root@nfs
111git config --system user.name root@nfs
112git config --system log.decorate auto
Gary Wu950a3232019-03-26 13:08:29 -0700113
114# version control the persistence volume to see what's happening
115chmod 777 /dockerdata-nfs/
116chown nobody:nogroup /dockerdata-nfs/
117cd /dockerdata-nfs/
118git init
Gary Wu950a3232019-03-26 13:08:29 -0700119git add -A
Konrad Bańkaa3990d02019-07-30 09:02:42 +0200120git commit -m "initial commit" --allow-empty
Gary Wu950a3232019-03-26 13:08:29 -0700121
Gary Wu0bc69832019-03-27 13:58:46 -0700122
Brian Freeman1160da42019-08-14 17:28:09 -0500123# export NFS mount
124echo "/dockerdata-nfs *(rw,fsid=1,async,no_root_squash,no_subtree_check)" | tee /etc/exports
125exportfs -a
126systemctl restart nfs-kernel-server
Gary Wu0bc69832019-03-27 13:58:46 -0700127
Gary Wu950a3232019-03-26 13:08:29 -0700128cd ~
129
130# install kubectl __kubectl_version__
131curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v__kubectl_version__/bin/linux/amd64/kubectl
132chmod +x ./kubectl
133sudo mv ./kubectl /usr/local/bin/kubectl
Gary Wu0bc69832019-03-27 13:58:46 -0700134mkdir -p ~/.kube
Gary Wu950a3232019-03-26 13:08:29 -0700135
136# install helm __helm_version__
137mkdir -p helm
138pushd helm
139wget -q http://storage.googleapis.com/kubernetes-helm/helm-v__helm_version__-linux-amd64.tar.gz
140tar -zxvf helm-v__helm_version__-linux-amd64.tar.gz
141sudo cp linux-amd64/helm /usr/local/bin/helm
142popd
143
Gary Wu950a3232019-03-26 13:08:29 -0700144
145
146
Gary Wu0bc69832019-03-27 13:58:46 -0700147# Clone OOM repo
Gary Wu950a3232019-03-26 13:08:29 -0700148cd ~
Gary Wuabf01f72019-04-30 08:08:28 -0700149git clone --recurse-submodules -b __oom_gerrit_branch__ https://gerrit.onap.org/r/oom
Gary Wu950a3232019-03-26 13:08:29 -0700150cd oom
151if [ ! -z "__oom_gerrit_refspec__" ]; then
152 git fetch https://gerrit.onap.org/r/oom __oom_gerrit_refspec__
153 git checkout FETCH_HEAD
154fi
155git checkout -b workarounds
156git log -1
157
Gary Wu0bc69832019-03-27 13:58:46 -0700158# Clone integration repo
Gary Wu950a3232019-03-26 13:08:29 -0700159cd ~
160git clone -b __integration_gerrit_branch__ https://gerrit.onap.org/r/integration
161cd integration
162if [ ! -z "__integration_gerrit_refspec__" ]; then
163 git fetch https://gerrit.onap.org/r/integration __integration_gerrit_refspec__
164 git checkout FETCH_HEAD
165fi
166
167
Gary Wu950a3232019-03-26 13:08:29 -0700168cd ~/oom
169# workaround to change onap portal cookie domain
Gary Wua7f1a942019-04-15 09:09:20 -0700170#sed -i "s/^cookie_domain.*=.*/cookie_domain = __portal_hostname__/g" ./kubernetes/portal/charts/portal-app/resources/config/deliveries/properties/ONAPPORTAL/system.properties
171#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 -0700172git diff
173git commit -a -m "set portal cookie domain"
174
175git tag -a "deploy0" -m "initial deployment"
176
177
Gary Wu0bc69832019-03-27 13:58:46 -0700178
179
180
181
182
183# wait for /root/.kube/config to show up; will be placed by deploy script after RKE completes
184while [ ! -e /root/.kube/config ]; do
185 sleep 1m
186done
187
188
189NAMESPACE=onap
190export KUBECONFIG=/root/.kube/config
191kubectl config set-context $(kubectl config current-context) --namespace=$NAMESPACE
192kubectl config view
193
194
195# Enable auto-completion for kubectl
196echo "source <(kubectl completion bash)" >> ~/.bashrc
197
198
199until [ $(kubectl get cs | tail -n +2 | grep -c Healthy) -ge 5 ]; do
200 sleep 1m
201done
202
203
204# install tiller/helm
Gary Wu950a3232019-03-26 13:08:29 -0700205kubectl -n kube-system create serviceaccount tiller
206kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
207helm init --service-account tiller
208kubectl -n kube-system rollout status deploy/tiller-deploy
Gary Wu950a3232019-03-26 13:08:29 -0700209helm serve &
210sleep 10
Gary Wu0bc69832019-03-27 13:58:46 -0700211
212# Make ONAP helm charts
213cd ~/oom/kubernetes/
Gary Wu950a3232019-03-26 13:08:29 -0700214helm repo add local http://127.0.0.1:8879
215helm repo list
216make all
217helm search -l | grep local
218
219# install helm deploy plugin
220rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/
221# temporary workaround to throttle the helm deploy to alleviate startup disk contention issues
222if [ ! -z "__helm_deploy_delay__" ]; then
223 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 -0700224 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 -0700225fi
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