Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 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 |
Gary Wu | 9bb778b | 2019-06-21 16:16:18 -0700 | [diff] [blame] | 23 | echo "__nfs_volume_id__" > /opt/config/nfs_volume_id.txt |
Gary Wu | d95bf2b | 2019-06-21 15:35:18 -0700 | [diff] [blame] | 24 | echo "__nfs_ip_addr__" > /opt/config/nfs_ip_addr.txt |
Gary Wu | 9bb778b | 2019-06-21 16:16:18 -0700 | [diff] [blame] | 25 | echo "__nfs_private_ip_addr__" > /opt/config/nfs_private_ip_addr.txt |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 26 | echo "__k8s_vm_ips__" > /opt/config/k8s_vm_ips.txt |
| 27 | echo "__k8s_private_ips__" > /opt/config/k8s_private_ips.txt |
| 28 | echo "__public_net_id__" > /opt/config/public_net_id.txt |
| 29 | echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt |
| 30 | echo "__oam_network_id__" > /opt/config/oam_network_id.txt |
| 31 | echo "__oam_subnet_id__" > /opt/config/oam_subnet_id.txt |
| 32 | echo "__sec_group__" > /opt/config/sec_group.txt |
| 33 | echo "__integration_gerrit_branch__" > /opt/config/integration_gerrit_branch.txt |
| 34 | echo "__integration_gerrit_refspec__" > /opt/config/integration_gerrit_refspec.txt |
| 35 | echo "__oom_gerrit_branch__" > /opt/config/oom_gerrit_branch.txt |
| 36 | echo "__oom_gerrit_refspec__" > /opt/config/oom_gerrit_refspec.txt |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 37 | echo "__docker_proxy__" > /opt/config/docker_proxy.txt |
| 38 | echo "__docker_version__" > /opt/config/docker_version.txt |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 39 | echo "__kubectl_version__" > /opt/config/kubectl_version.txt |
| 40 | echo "__helm_version__" > /opt/config/helm_version.txt |
| 41 | echo "__helm_deploy_delay__" > /opt/config/helm_deploy_delay.txt |
| 42 | echo "__mtu__" > /opt/config/mtu.txt |
| 43 | echo "__portal_hostname__" > /opt/config/portal_hostname.txt |
| 44 | |
| 45 | cat <<EOF > /opt/config/integration-override.yaml |
| 46 | __integration_override_yaml__ |
| 47 | EOF |
| 48 | sed -i 's/\_\_portal_hostname__/__portal_hostname__/g' /opt/config/integration-override.yaml |
| 49 | sed -i 's/\_\_public_net_id__/__public_net_id__/g' /opt/config/integration-override.yaml |
| 50 | sed -i 's|\_\_oam_network_cidr__|__oam_network_cidr__|g' /opt/config/integration-override.yaml |
| 51 | sed -i 's/\_\_oam_network_id__/__oam_network_id__/g' /opt/config/integration-override.yaml |
| 52 | sed -i 's/\_\_oam_subnet_id__/__oam_subnet_id__/g' /opt/config/integration-override.yaml |
| 53 | sed -i 's/\_\_sec_group__/__sec_group__/g' /opt/config/integration-override.yaml |
Gary Wu | d95bf2b | 2019-06-21 15:35:18 -0700 | [diff] [blame] | 54 | sed -i 's/\_\_nfs_ip_addr__/__nfs_ip_addr__/g' /opt/config/integration-override.yaml |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 55 | sed -i 's/\_\_k8s_01_vm_ip__/__k8s_01_vm_ip__/g' /opt/config/integration-override.yaml |
| 56 | sed -i 's/\_\_docker_proxy__/__docker_proxy__/g' /opt/config/integration-override.yaml |
| 57 | cp /opt/config/integration-override.yaml /root |
| 58 | cat /root/integration-override.yaml |
| 59 | |
| 60 | mkdir -p /etc/docker |
| 61 | if [ ! -z "__docker_proxy__" ]; then |
| 62 | cat > /etc/docker/daemon.json <<EOF |
| 63 | { |
| 64 | "mtu": __mtu__, |
| 65 | "insecure-registries" : ["__docker_proxy__"] |
| 66 | } |
| 67 | EOF |
| 68 | else |
| 69 | cat > /etc/docker/daemon.json <<EOF |
| 70 | { |
| 71 | "mtu": __mtu__ |
| 72 | } |
| 73 | EOF |
| 74 | fi |
| 75 | if [ ! -z "__apt_proxy__" ]; then |
| 76 | cat > /etc/apt/apt.conf.d/30proxy<<EOF |
| 77 | Acquire::http { Proxy "http://__apt_proxy__"; }; |
| 78 | Acquire::https::Proxy "DIRECT"; |
| 79 | EOF |
| 80 | fi |
| 81 | |
| 82 | # workaround for OpenStack intermittent failure to change default apt mirrors |
| 83 | sed -i 's|http://archive.ubuntu.com|http://nova.clouds.archive.ubuntu.com|g' /etc/apt/sources.list |
| 84 | |
| 85 | while ! hash jq &> /dev/null; do |
| 86 | apt-get -y update |
Gary Wu | 9bb778b | 2019-06-21 16:16:18 -0700 | [diff] [blame] | 87 | apt-get -y install curl jq make nfs-kernel-server moreutils zfsutils-linux |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 88 | sleep 10 |
| 89 | done |
| 90 | |
Gary Wu | 06b0812 | 2019-06-21 23:15:55 -0700 | [diff] [blame] | 91 | sed -i 's/RPCNFSDCOUNT=.*/RPCNFSDCOUNT=32/' /etc/default/nfs-kernel-server |
| 92 | service nfs-kernel-server restart |
| 93 | |
Gary Wu | 9bb778b | 2019-06-21 16:16:18 -0700 | [diff] [blame] | 94 | nfs_volume_dev="/dev/disk/by-id/virtio-$(echo "__nfs_volume_id__" | cut -c -20)" |
| 95 | |
| 96 | zpool create -f -m /dockerdata-nfs dockerdata-nfs $nfs_volume_dev |
| 97 | zfs set compression=lz4 dockerdata-nfs |
| 98 | zfs set sharenfs="rw=*" dockerdata-nfs |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 99 | |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 100 | # update and initialize git |
Gary Wu | d95bf2b | 2019-06-21 15:35:18 -0700 | [diff] [blame] | 101 | git config --global user.email root@nfs |
| 102 | git config --global user.name root@nfs |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 103 | git config --global log.decorate auto |
| 104 | |
| 105 | # version control the persistence volume to see what's happening |
| 106 | chmod 777 /dockerdata-nfs/ |
| 107 | chown nobody:nogroup /dockerdata-nfs/ |
| 108 | cd /dockerdata-nfs/ |
| 109 | git init |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 110 | git add -A |
| 111 | git commit -m "initial commit" |
| 112 | |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 113 | |
| 114 | |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 115 | cd ~ |
| 116 | |
| 117 | # install kubectl __kubectl_version__ |
| 118 | curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v__kubectl_version__/bin/linux/amd64/kubectl |
| 119 | chmod +x ./kubectl |
| 120 | sudo mv ./kubectl /usr/local/bin/kubectl |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 121 | mkdir -p ~/.kube |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 122 | |
| 123 | # install helm __helm_version__ |
| 124 | mkdir -p helm |
| 125 | pushd helm |
| 126 | wget -q http://storage.googleapis.com/kubernetes-helm/helm-v__helm_version__-linux-amd64.tar.gz |
| 127 | tar -zxvf helm-v__helm_version__-linux-amd64.tar.gz |
| 128 | sudo cp linux-amd64/helm /usr/local/bin/helm |
| 129 | popd |
| 130 | |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 131 | |
| 132 | |
| 133 | |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 134 | # Clone OOM repo |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 135 | cd ~ |
Gary Wu | abf01f7 | 2019-04-30 08:08:28 -0700 | [diff] [blame] | 136 | git clone --recurse-submodules -b __oom_gerrit_branch__ https://gerrit.onap.org/r/oom |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 137 | cd oom |
| 138 | if [ ! -z "__oom_gerrit_refspec__" ]; then |
| 139 | git fetch https://gerrit.onap.org/r/oom __oom_gerrit_refspec__ |
| 140 | git checkout FETCH_HEAD |
| 141 | fi |
| 142 | git checkout -b workarounds |
| 143 | git log -1 |
| 144 | |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 145 | # Clone integration repo |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 146 | cd ~ |
| 147 | git clone -b __integration_gerrit_branch__ https://gerrit.onap.org/r/integration |
| 148 | cd integration |
| 149 | if [ ! -z "__integration_gerrit_refspec__" ]; then |
| 150 | git fetch https://gerrit.onap.org/r/integration __integration_gerrit_refspec__ |
| 151 | git checkout FETCH_HEAD |
| 152 | fi |
| 153 | |
| 154 | |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 155 | cd ~/oom |
| 156 | # workaround to change onap portal cookie domain |
Gary Wu | a7f1a94 | 2019-04-15 09:09:20 -0700 | [diff] [blame] | 157 | #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 Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 159 | git diff |
| 160 | git commit -a -m "set portal cookie domain" |
| 161 | |
| 162 | git tag -a "deploy0" -m "initial deployment" |
| 163 | |
| 164 | |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 165 | |
| 166 | |
| 167 | |
| 168 | |
| 169 | |
| 170 | # wait for /root/.kube/config to show up; will be placed by deploy script after RKE completes |
| 171 | while [ ! -e /root/.kube/config ]; do |
| 172 | sleep 1m |
| 173 | done |
| 174 | |
| 175 | |
| 176 | NAMESPACE=onap |
| 177 | export KUBECONFIG=/root/.kube/config |
| 178 | kubectl config set-context $(kubectl config current-context) --namespace=$NAMESPACE |
| 179 | kubectl config view |
| 180 | |
| 181 | |
| 182 | # Enable auto-completion for kubectl |
| 183 | echo "source <(kubectl completion bash)" >> ~/.bashrc |
| 184 | |
| 185 | |
| 186 | until [ $(kubectl get cs | tail -n +2 | grep -c Healthy) -ge 5 ]; do |
| 187 | sleep 1m |
| 188 | done |
| 189 | |
| 190 | |
| 191 | # install tiller/helm |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 192 | kubectl -n kube-system create serviceaccount tiller |
| 193 | kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller |
| 194 | helm init --service-account tiller |
| 195 | kubectl -n kube-system rollout status deploy/tiller-deploy |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 196 | helm serve & |
| 197 | sleep 10 |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 198 | |
| 199 | # Make ONAP helm charts |
| 200 | cd ~/oom/kubernetes/ |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 201 | helm repo add local http://127.0.0.1:8879 |
| 202 | helm repo list |
| 203 | make all |
| 204 | helm search -l | grep local |
| 205 | |
| 206 | # install helm deploy plugin |
| 207 | rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/ |
| 208 | # temporary workaround to throttle the helm deploy to alleviate startup disk contention issues |
| 209 | if [ ! -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 Wu | a56df52 | 2019-06-07 00:34:43 -0700 | [diff] [blame] | 211 | sed -i 's/for subchart in \*/for subchart in aaf cassandra mariadb-galera dmaap */' ~/.helm/plugins/deploy/deploy.sh |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 212 | fi |
| 213 | |
Gary Wu | 0bc6983 | 2019-03-27 13:58:46 -0700 | [diff] [blame] | 214 | # Deploy ONAP |
Gary Wu | 950a323 | 2019-03-26 13:08:29 -0700 | [diff] [blame] | 215 | helm 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 |
| 218 | rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/ |
| 219 | |
| 220 | helm list |
| 221 | |
| 222 | |
| 223 | |
| 224 | # Check ONAP status: |
| 225 | sleep 10 |
| 226 | kubectl get pods --all-namespaces |
| 227 | kubectl get nodes |
| 228 | kubectl top nodes |