Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 1 | #!/bin/bash -x |
Gary Wu | a3fb86f | 2018-06-04 16:23:54 -0700 | [diff] [blame] | 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 | |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 12 | printenv |
| 13 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 14 | mkdir -p /opt/config |
| 15 | echo "__rancher_ip_addr__" > /opt/config/rancher_ip_addr.txt |
| 16 | echo "__k8s_vm_ips__" > /opt/config/k8s_vm_ips.txt |
Gary Wu | ad51372 | 2018-07-26 13:08:47 -0700 | [diff] [blame] | 17 | echo "__k8s_private_ips__" > /opt/config/k8s_private_ips.txt |
Gary Wu | 978171e | 2018-07-24 11:56:01 -0700 | [diff] [blame] | 18 | echo "__public_net_id__" > /opt/config/public_net_id.txt |
| 19 | echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 20 | echo "__oam_network_id__" > /opt/config/oam_network_id.txt |
| 21 | echo "__oam_subnet_id__" > /opt/config/oam_subnet_id.txt |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 22 | echo "__integration_gerrit_branch__" > /opt/config/integration_gerrit_branch.txt |
| 23 | echo "__integration_gerrit_refspec__" > /opt/config/integration_gerrit_refspec.txt |
| 24 | echo "__oom_gerrit_branch__" > /opt/config/oom_gerrit_branch.txt |
| 25 | echo "__oom_gerrit_refspec__" > /opt/config/oom_gerrit_refspec.txt |
Gary Wu | 81836d2 | 2018-06-22 13:48:50 -0700 | [diff] [blame] | 26 | echo "__docker_manifest__" > /opt/config/docker_manifest.txt |
Gary Wu | 978171e | 2018-07-24 11:56:01 -0700 | [diff] [blame] | 27 | echo "__docker_proxy__" > /opt/config/docker_proxy.txt |
Gary Wu | 7a04b3d | 2018-08-15 12:31:46 -0700 | [diff] [blame] | 28 | echo "__docker_version__" > /opt/config/docker_version.txt |
| 29 | echo "__rancher_version__" > /opt/config/rancher_version.txt |
| 30 | echo "__rancher_agent_version__" > /opt/config/rancher_agent_version.txt |
| 31 | echo "__kubectl_version__" > /opt/config/kubectl_version.txt |
| 32 | echo "__helm_version__" > /opt/config/helm_version.txt |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 33 | |
| 34 | cat <<EOF > /opt/config/integration-override.yaml |
| 35 | __integration_override_yaml__ |
| 36 | EOF |
Gary Wu | 978171e | 2018-07-24 11:56:01 -0700 | [diff] [blame] | 37 | sed -i 's/\_\_public_net_id__/__public_net_id__/g' /opt/config/integration-override.yaml |
| 38 | sed -i 's|\_\_oam_network_cidr__|__oam_network_cidr__|g' /opt/config/integration-override.yaml |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 39 | sed -i 's/\_\_oam_network_id__/__oam_network_id__/g' /opt/config/integration-override.yaml |
| 40 | sed -i 's/\_\_oam_subnet_id__/__oam_subnet_id__/g' /opt/config/integration-override.yaml |
Gary Wu | ed95ca7 | 2018-07-26 10:24:51 -0700 | [diff] [blame] | 41 | sed -i 's/\_\_rancher_ip_addr__/__rancher_ip_addr__/g' /opt/config/integration-override.yaml |
Gary Wu | 0a67162 | 2018-05-14 12:59:03 -0700 | [diff] [blame] | 42 | sed -i 's/\_\_k8s_1_vm_ip__/__k8s_1_vm_ip__/g' /opt/config/integration-override.yaml |
Gary Wu | 978171e | 2018-07-24 11:56:01 -0700 | [diff] [blame] | 43 | sed -i 's/\_\_docker_proxy__/__docker_proxy__/g' /opt/config/integration-override.yaml |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 44 | cp /opt/config/integration-override.yaml /root |
Gary Wu | 978171e | 2018-07-24 11:56:01 -0700 | [diff] [blame] | 45 | cat /root/integration-override.yaml |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 46 | |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 47 | echo `hostname -I` `hostname` >> /etc/hosts |
| 48 | mkdir -p /etc/docker |
Gary Wu | 3ad596f | 2018-02-08 07:16:37 -0800 | [diff] [blame] | 49 | if [ ! -z "__docker_proxy__" ]; then |
| 50 | cat > /etc/docker/daemon.json <<EOF |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 51 | { |
| 52 | "insecure-registries" : ["__docker_proxy__"] |
| 53 | } |
| 54 | EOF |
Gary Wu | 3ad596f | 2018-02-08 07:16:37 -0800 | [diff] [blame] | 55 | fi |
| 56 | if [ ! -z "__apt_proxy__" ]; then |
| 57 | cat > /etc/apt/apt.conf.d/30proxy<<EOF |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 58 | Acquire::http { Proxy "http://__apt_proxy__"; }; |
| 59 | Acquire::https::Proxy "DIRECT"; |
| 60 | EOF |
Gary Wu | 3ad596f | 2018-02-08 07:16:37 -0800 | [diff] [blame] | 61 | fi |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 62 | apt-get -y update |
Gary Wu | bc76450 | 2018-06-28 16:13:41 -0700 | [diff] [blame] | 63 | apt-get -y install linux-image-extra-$(uname -r) jq make nfs-kernel-server moreutils |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 64 | |
| 65 | |
Gary Wu | c474970 | 2018-06-26 14:27:41 -0700 | [diff] [blame] | 66 | # use RAM disk for /dockerdata-nfs for testing |
Gary Wu | bc76450 | 2018-06-28 16:13:41 -0700 | [diff] [blame] | 67 | echo "tmpfs /dockerdata-nfs tmpfs noatime 1 2" >> /etc/fstab |
Gary Wu | c474970 | 2018-06-26 14:27:41 -0700 | [diff] [blame] | 68 | mkdir -pv /dockerdata-nfs |
| 69 | mount /dockerdata-nfs |
| 70 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 71 | # version control the persistence volume to see what's happening |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 72 | chmod 777 /dockerdata-nfs/ |
| 73 | chown nobody:nogroup /dockerdata-nfs/ |
| 74 | cd /dockerdata-nfs/ |
| 75 | git init |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 76 | git config user.email "root@onap" |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 77 | git config user.name "root" |
| 78 | git add -A |
| 79 | git commit -m "initial commit" |
| 80 | |
| 81 | # export NFS mount |
| 82 | NFS_EXP="" |
Gary Wu | ad51372 | 2018-07-26 13:08:47 -0700 | [diff] [blame] | 83 | for K8S_VM_IP in $(tr -d ',[]' < /opt/config/k8s_private_ips.txt); do |
Gary Wu | bc76450 | 2018-06-28 16:13:41 -0700 | [diff] [blame] | 84 | NFS_EXP+="$K8S_VM_IP(rw,fsid=1,sync,no_root_squash,no_subtree_check) " |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 85 | done |
| 86 | echo "/dockerdata-nfs $NFS_EXP" | tee /etc/exports |
| 87 | |
| 88 | |
| 89 | exportfs -a |
| 90 | systemctl restart nfs-kernel-server |
| 91 | |
| 92 | cd ~ |
| 93 | |
Gary Wu | 7a04b3d | 2018-08-15 12:31:46 -0700 | [diff] [blame] | 94 | # install docker __docker_version__ |
| 95 | curl -s https://releases.rancher.com/install-docker/__docker_version__.sh | sh |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 96 | usermod -aG docker ubuntu |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 97 | |
Gary Wu | 7a04b3d | 2018-08-15 12:31:46 -0700 | [diff] [blame] | 98 | # install rancher __rancher_version__ |
| 99 | docker run --restart unless-stopped -d -p 8080:8080 -e CATTLE_BOOTSTRAP_REQUIRED_IMAGE=__docker_proxy__/rancher/agent:v__rancher_agent_version__ __docker_proxy__/rancher/server:v__rancher_version__ |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 100 | |
Gary Wu | 7a04b3d | 2018-08-15 12:31:46 -0700 | [diff] [blame] | 101 | # install kubectl __kubectl_version__ |
| 102 | curl -s -LO https://storage.googleapis.com/kubernetes-release/release/v__kubectl_version__/bin/linux/amd64/kubectl |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 103 | chmod +x ./kubectl |
| 104 | sudo mv ./kubectl /usr/local/bin/kubectl |
| 105 | mkdir ~/.kube |
| 106 | |
Gary Wu | 7a04b3d | 2018-08-15 12:31:46 -0700 | [diff] [blame] | 107 | # install helm __helm_version__ |
| 108 | wget -q http://storage.googleapis.com/kubernetes-helm/helm-v__helm_version__-linux-amd64.tar.gz |
| 109 | tar -zxvf helm-v__helm_version__-linux-amd64.tar.gz |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 110 | sudo mv linux-amd64/helm /usr/local/bin/helm |
| 111 | |
Gary Wu | ad51372 | 2018-07-26 13:08:47 -0700 | [diff] [blame] | 112 | echo export RANCHER_IP=__rancher_private_ip_addr__ > api-keys-rc |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 113 | source api-keys-rc |
| 114 | |
| 115 | sleep 50 |
| 116 | until curl -s -o projects.json -H "Accept: application/json" http://$RANCHER_IP:8080/v2-beta/projects; do |
| 117 | sleep 10 |
| 118 | done |
| 119 | OLD_PID=$(jq -r '.data[0].id' projects.json) |
| 120 | |
| 121 | curl -s -H "Accept: application/json" -H "Content-Type: application/json" -d '{"accountId":"1a1"}' http://$RANCHER_IP:8080/v2-beta/apikeys > apikeys.json |
| 122 | echo export RANCHER_ACCESS_KEY=`jq -r '.publicValue' apikeys.json` >> api-keys-rc |
| 123 | echo export RANCHER_SECRET_KEY=`jq -r '.secretValue' apikeys.json` >> api-keys-rc |
| 124 | source api-keys-rc |
| 125 | |
| 126 | |
| 127 | curl -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" -X PUT -H 'Accept: application/json' -H 'Content-Type: application/json' -d '{"id":"registry.default","type":"activeSetting","baseType":"setting","name":"registry.default","activeValue":"__docker_proxy__","inDb":true,"source":"Database","value":"__docker_proxy__"}' http://$RANCHER_IP:8080/v2-beta/settings/registry.default |
| 128 | |
| 129 | curl -s -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" -X DELETE -H 'Content-Type: application/json' "http://$RANCHER_IP:8080/v2-beta/projects/$OLD_PID" |
| 130 | |
| 131 | until [ ! -z "$TEMPLATE_ID" ] && [ "$TEMPLATE_ID" != "null" ]; do |
| 132 | sleep 5 |
| 133 | curl -s -H "Accept: application/json" http://$RANCHER_IP:8080/v2-beta/projectTemplates?name=Kubernetes > projectTemplatesKubernetes.json |
| 134 | TEMPLATE_ID=$(jq -r '.data[0].id' projectTemplatesKubernetes.json) |
| 135 | done |
| 136 | |
| 137 | curl -s -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" -X POST -H 'Content-Type: application/json' -d '{ "name":"oom", "projectTemplateId":"'$TEMPLATE_ID'" }' "http://$RANCHER_IP:8080/v2-beta/projects" > project.json |
| 138 | PID=`jq -r '.id' project.json` |
| 139 | echo export RANCHER_URL=http://$RANCHER_IP:8080/v1/projects/$PID >> api-keys-rc |
| 140 | source api-keys-rc |
| 141 | |
| 142 | until [ $(jq -r '.state' project.json) == "active" ]; do |
| 143 | sleep 5 |
| 144 | curl -s -H "Accept: application/json" http://$RANCHER_IP:8080/v1/projects/$PID > project.json |
| 145 | done |
| 146 | |
| 147 | |
| 148 | curl -s -u $RANCHER_ACCESS_KEY:$RANCHER_SECRET_KEY -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d '{"name":"docker-proxy", "serverAddress":"__docker_proxy__"}' $RANCHER_URL/registries > registry.json |
| 149 | RID=$(jq -r '.id' registry.json) |
| 150 | |
| 151 | |
| 152 | curl -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d '{"publicValue":"docker", "registryId":"'$RID'", "secretValue":"docker", "type":"registryCredential"}' "http://$RANCHER_IP:8080/v2-beta/projects/$PID/registrycredential" |
| 153 | |
| 154 | |
| 155 | |
| 156 | TID=$(curl -s -X POST -H "Accept: application/json" -H "Content-Type: application/json" http://$RANCHER_IP:8080/v1/projects/$PID/registrationTokens | jq -r '.id') |
| 157 | touch token.json |
| 158 | while [ $(jq -r .command token.json | wc -c) -lt 10 ]; do |
| 159 | sleep 5 |
| 160 | curl -s -X GET -H "Accept: application/json" http://$RANCHER_IP:8080/v1/projects/$PID/registrationToken/$TID > token.json |
| 161 | done |
| 162 | jq -r .command token.json > rancher_agent_cmd.sh |
| 163 | chmod +x rancher_agent_cmd.sh |
| 164 | cp rancher_agent_cmd.sh /dockerdata-nfs |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 165 | cd /dockerdata-nfs |
| 166 | git add -A |
| 167 | git commit -a -m "Add rancher agent command file" |
| 168 | cd ~ |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 169 | |
| 170 | |
| 171 | KUBETOKEN=$(echo -n 'Basic '$(echo -n "$RANCHER_ACCESS_KEY:$RANCHER_SECRET_KEY" | base64 -w 0) | base64 -w 0) |
| 172 | |
| 173 | # create .kube/config |
| 174 | cat > ~/.kube/config <<EOF |
| 175 | apiVersion: v1 |
| 176 | kind: Config |
| 177 | clusters: |
| 178 | - cluster: |
| 179 | api-version: v1 |
| 180 | insecure-skip-tls-verify: true |
Gary Wu | ad51372 | 2018-07-26 13:08:47 -0700 | [diff] [blame] | 181 | server: "https://__rancher_ip_addr__:8080/r/projects/$PID/kubernetes:6443" |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 182 | name: "oom" |
| 183 | contexts: |
| 184 | - context: |
| 185 | cluster: "oom" |
| 186 | user: "oom" |
| 187 | name: "oom" |
| 188 | current-context: "oom" |
| 189 | users: |
| 190 | - name: "oom" |
| 191 | user: |
| 192 | token: "$KUBETOKEN" |
| 193 | EOF |
| 194 | |
| 195 | export KUBECONFIG=/root/.kube/config |
| 196 | kubectl config view |
| 197 | |
| 198 | # wait for kubernetes to initialze |
| 199 | sleep 100 |
| 200 | until [ $(kubectl get pods --namespace kube-system | tail -n +2 | grep -c Running) -ge 6 ]; do |
| 201 | sleep 10 |
| 202 | done |
| 203 | |
| 204 | |
| 205 | # Install using OOM |
| 206 | export HOME=/root |
Gary Wu | 978171e | 2018-07-24 11:56:01 -0700 | [diff] [blame] | 207 | mkdir -p ~/.ssh |
| 208 | cp ~ubuntu/.ssh/authorized_keys ~/.ssh |
| 209 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 210 | |
Gary Wu | 0dfbea3 | 2018-05-12 09:27:44 -0700 | [diff] [blame] | 211 | # update and initialize git |
| 212 | apt-get -y install git |
| 213 | git config --global user.email root@rancher |
| 214 | git config --global user.name root@rancher |
| 215 | git config --global log.decorate auto |
| 216 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 217 | # Clone OOM: |
| 218 | cd ~ |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 219 | git clone -b __oom_gerrit_branch__ https://gerrit.onap.org/r/oom |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 220 | cd oom |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 221 | git fetch https://gerrit.onap.org/r/oom __oom_gerrit_refspec__ |
| 222 | git checkout FETCH_HEAD |
Gary Wu | 0dfbea3 | 2018-05-12 09:27:44 -0700 | [diff] [blame] | 223 | git checkout -b workarounds |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 224 | git log -1 |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 225 | |
Gary Wu | 81836d2 | 2018-06-22 13:48:50 -0700 | [diff] [blame] | 226 | # Clone integration |
| 227 | cd ~ |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 228 | git clone -b __integration_gerrit_branch__ https://gerrit.onap.org/r/integration |
Gary Wu | 81836d2 | 2018-06-22 13:48:50 -0700 | [diff] [blame] | 229 | cd integration |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 230 | git fetch https://gerrit.onap.org/r/integration __integration_gerrit_refspec__ |
Gary Wu | 81836d2 | 2018-06-22 13:48:50 -0700 | [diff] [blame] | 231 | git checkout FETCH_HEAD |
| 232 | |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 233 | if [ ! -z "__docker_manifest__" ]; then |
| 234 | cd version-manifest/src/main/scripts |
| 235 | ./update-oom-image-versions.sh ../resources/__docker_manifest__ ~/oom/ |
| 236 | fi |
Gary Wu | 81836d2 | 2018-06-22 13:48:50 -0700 | [diff] [blame] | 237 | |
| 238 | cd ~/oom |
| 239 | git diff |
Gary Wu | 87aa8b5 | 2018-08-09 08:10:24 -0700 | [diff] [blame] | 240 | git commit -a -m "apply manifest versions" |
| 241 | git tag -a "deploy0" -m "initial deployment" |
Gary Wu | 81836d2 | 2018-06-22 13:48:50 -0700 | [diff] [blame] | 242 | |
| 243 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 244 | # Run ONAP: |
| 245 | cd ~/oom/kubernetes/ |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 246 | helm init --client-only |
| 247 | helm init --upgrade |
| 248 | helm serve & |
| 249 | sleep 3 |
| 250 | helm repo add local http://127.0.0.1:8879 |
| 251 | helm repo list |
| 252 | make all |
Gary Wu | 389aa90 | 2018-09-17 13:53:54 -0700 | [diff] [blame] | 253 | rsync -avt ~/oom/kubernetes/helm/plugins ~/.helm/ |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 254 | helm search -l | grep local |
Gary Wu | 389aa90 | 2018-09-17 13:53:54 -0700 | [diff] [blame] | 255 | helm deploy dev local/onap -f ~/integration-override.yaml --namespace onap | tee ~/helm-deploy.log |
| 256 | helm list |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 257 | |
hector | 56bc0dd | 2018-06-01 20:00:43 -0400 | [diff] [blame] | 258 | # Enable auto-completion for kubectl |
| 259 | echo "source <(kubectl completion bash)" >> ~/.bashrc |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 260 | |
| 261 | # Check ONAP status: |
| 262 | sleep 3 |
| 263 | kubectl get pods --all-namespaces |