blob: 95240d78262a282389fc4e866a78a3935e5cda2c [file] [log] [blame]
Test User01ed0642019-07-03 20:17:06 +00001#!/bin/bash
David K. Bainbridgeb7285432019-07-02 22:05:24 -07002# Copyright 2019 Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
David Bainbridge712afb82019-08-14 19:55:58 +000015TOTAL_START_TIME=$(date +%s)
David K. Bainbridgeb7285432019-07-02 22:05:24 -070016
David Bainbridge38dc1e82019-08-12 15:18:45 +000017FANCY=${FANCY:-1}
18if [ "$TERM X" == " X" ]; then
19 FANCY=0
20fi
21
David K. Bainbridgeb7285432019-07-02 22:05:24 -070022# trap ctrl-c and call ctrl_c()
23trap ctrl_c INT
24
25function ctrl_c() {
David Bainbridge38dc1e82019-08-12 15:18:45 +000026 echo -en $CNORM
David K. Bainbridgeb7285432019-07-02 22:05:24 -070027 echo ""
28 echo "ctrl-c trapped"
David Bainbridgec6a6eb62019-10-18 22:50:07 +000029 echo "Thank you for trying 'voltha up'"
David K. Bainbridgeb7285432019-07-02 22:05:24 -070030 exit
31}
32
David Bainbridge28c64462019-12-12 22:25:26 +000033VOLTCTL_VERSION=${VOLTCTL_VERSION:-1.0.1}
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -080034KIND_VERSION=${KIND_VERSION:-v0.5.1}
Test User08ebbd92019-07-03 17:15:39 +000035
David Bainbridge38dc1e82019-08-12 15:18:45 +000036BLACK=
37RED=
38GREEN=
39YELLOW=
40BLUE=
41MAGENTA=
42CYAN=
43WHITE=
44BOLD=
45NORMAL=
46ERROR=
47CEOL=
48CNORM=
49CIVIS=
50if [ $FANCY -eq 1 ]; then
51 BLACK=$(tput setaf 0)
52 RED=$(tput setaf 1)
53 GREEN=$(tput setaf 2)
54 YELLOW=$(tput setaf 3)
55 BLUE=$(tput setaf 4)
56 MAGENTA=$(tput setaf 5)
57 CYAN=$(tput setaf 6)
58 WHITE=$(tput setaf 7)
59 BOLD=$(tput bold)
60 NORMAL=$(tput sgr0)
61 ERROR="\xe2\x9c\x97\x20"
62 CEOL=$(tput el)
63 CNORM=$(tput cnorm)
64 CIVIS=$(tput civis)
65fi
Test User7d866122019-07-09 17:52:35 +000066
Test User3d7ad8e2019-07-03 06:15:44 +000067TYPE=${TYPE:-minimal}
David Bainbridge0774b232019-08-02 06:37:19 +000068NAME=${NAME:-$TYPE}
David Bainbridgee87067b2019-08-12 22:00:12 +000069WITH_TIMINGS=${WITH_TIMINGS:-no}
Test User7d866122019-07-09 17:52:35 +000070WITH_BBSIM=${WITH_BBSIM:-no}
David Bainbridge5b7b96b2019-07-25 20:29:13 +000071WITH_RADIUS=${WITH_RADIUS:-no}
David Bainbridgeb270c202019-07-26 01:44:42 +000072WITH_ONOS=${WITH_ONOS:-yes}
David Bainbridge99ac7a22019-08-31 02:26:43 +000073WITH_CHAOS=${WITH_CHAOS:-no}
David Bainbridge46505fb2019-10-01 21:13:20 +000074WITH_ADAPTERS=${WITH_ADAPTERS:-yes}
75WITH_SIM_ADAPTERS=${WITH_SIM_ADAPTERS:-yes}
76WITH_OPEN_ADAPTERS=${WITH_OPEN_ADAPTERS:-yes}
David Bainbridge05cd8822019-11-19 17:43:53 +000077ONLY_ONE=${ONLY_ONE:-yes}
David Bainbridge2b19e832019-08-16 02:40:53 +000078CONFIG_SADIS=${CONFIG_SADIS:-no}
David Bainbridge27790d62019-08-13 22:43:19 +000079INSTALL_ONOS_APPS=${INSTALL_ONOS_APPS:-no}
Test Userba1e7e72019-07-10 22:27:54 +000080JUST_K8S=${JUST_K8S:-no}
81DEPLOY_K8S=${DEPLOY_K8S:-yes}
David K. Bainbridge0e89cb92019-07-17 11:30:10 -070082INSTALL_KUBECTL=${INSTALL_KUBECTL:-yes}
83INSTALL_HELM=${INSTALL_HELM:-yes}
David Bainbridge46505fb2019-10-01 21:13:20 +000084UPDATE_HELM_REPOS=${UPDATE_HELM_REPOS:-yes}
David Bainbridge4f1b5562019-08-19 04:46:52 +000085WAIT_ON_DOWN=${WAIT_ON_DOWN:-no}
David Bainbridge5b7b96b2019-07-25 20:29:13 +000086VOLTHA_LOG_LEVEL=${VOLTHA_LOG_LEVEL:-WARN}
David Bainbridge90fd8e32019-08-21 23:32:47 +000087VOLTHA_CHART=${VOLTHA_CHART:-onf/voltha}
88VOLTHA_CHART_VERSION=${VOLTHA_CHART_VERSION:-latest}
89VOLTHA_BBSIM_CHART=${VOLTHA_BBSIM_CHART:-onf/bbsim}
Matteo Scandolodcd29f52019-10-07 15:42:42 -070090VOLTHA_BBSIM_CHART_VERSION=${VOLTHA_BBSIM_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000091VOLTHA_ADAPTER_SIM_CHART=${VOLTHA_ADAPTER_SIM_CHART:-onf/voltha-adapter-simulated}
David Bainbridge90fd8e32019-08-21 23:32:47 +000092VOLTHA_ADAPTER_SIM_CHART_VERSION=${VOLTHA_ADAPTER_SIM_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000093VOLTHA_ADAPTER_OPEN_OLT_CHART=${VOLTHA_ADAPTER_OPEN_OLT_CHART:-onf/voltha-adapter-openolt}
David Bainbridge90fd8e32019-08-21 23:32:47 +000094VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION=${VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000095VOLTHA_ADAPTER_OPEN_ONU_CHART=${VOLTHA_ADAPTER_OPEN_ONU_CHART:-onf/voltha-adapter-openonu}
David Bainbridge90fd8e32019-08-21 23:32:47 +000096VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION=${VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION:-latest}
David Bainbridge70c0ea82019-11-14 23:25:26 +000097EXTRA_HELM_INSTALL_ARGS=
Test Userba1e7e72019-07-10 22:27:54 +000098
99HAVE_GO=$(which go >/dev/null 2>&1 && echo "yes" || echo "no")
100HOSTOS=$(uname -s | tr "[:upper:]" "[:lower:"])
101HOSTARCH=$(uname -m | tr "[:upper:]" "[:lower:"])
102if [ $HOSTARCH == "x86_64" ]; then
103 HOSTARCH="amd64"
104fi
Test User7d866122019-07-09 17:52:35 +0000105
106# Verify TYPE setting
107if [ $(echo ":minimal:full:" | grep -ic ":$TYPE:") -eq 0 ]; then
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700108 >&2 echo -e "${RED}${BOLD}${ERROR}ERROR:${NORMAL}${RED} Invalid \$TYPE value of '$TYPE'. Should be 'minimal' or 'full'${NORMAL}"
Test User7d866122019-07-09 17:52:35 +0000109 exit 1
110fi
111
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000112# Used to verify configuration values are set to "yes" or "no" value or convert
113# equivalents to "yes" or "no"
114function verify_yes_no() {
115 local VAR=$1
116 local VAL=$(eval echo \$$VAR)
117 if [ $(echo ":y:yes:true:n:no:false:1:0:" | grep -ic ":$VAL:") -eq 0 ]; then
118 >&2 echo -e "${RED}${BOLD}${ERROR}ERROR:${NORMAL}${RED} Invalid '$VAR' value of '$VAL'. Should be 'yes' or 'no'${NORMAL}"
119 echo "INVALID"
120 return 1
121 fi
122 if [ $(echo ":y:yes:true:1:" | grep -ic ":$VAL:") -eq 1 ]; then
123 echo "yes"
124 else
125 echo "no"
126 fi
127 return 0
128}
Test User7d866122019-07-09 17:52:35 +0000129
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000130ALL_YES_NO="\
131 WITH_TIMINGS \
132 WITH_BBSIM \
133 WITH_RADIUS \
134 WITH_ONOS \
David Bainbridge99ac7a22019-08-31 02:26:43 +0000135 WITH_CHAOS \
David Bainbridge46505fb2019-10-01 21:13:20 +0000136 WITH_ADAPTERS \
137 WITH_SIM_ADAPTERS \
138 WITH_OPEN_ADAPTERS \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000139 CONFIG_SADIS \
140 JUST_K8S \
141 DEPLOY_K8S \
142 INSTALL_ONOS_APPS \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000143 INSTALL_KUBECTL \
144 INSTALL_HELM \
David Bainbridge46505fb2019-10-01 21:13:20 +0000145 UPDATE_HELM_REPOS \
David Bainbridge4f1b5562019-08-19 04:46:52 +0000146 WAIT_ON_DOWN \
David Bainbridge70c0ea82019-11-14 23:25:26 +0000147 ONLY_ONE \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000148 "
David Bainbridge5b7b96b2019-07-25 20:29:13 +0000149
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000150ALL_OPTIONS="\
151 NAME \
152 TYPE \
153 $ALL_YES_NO \
154 VOLTHA_LOG_LEVEL \
155 VOLTHA_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000156 VOLTHA_CHART_VERSION \
157 VOLTHA_BBSIM_CHART \
158 VOLTHA_BBSIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000159 VOLTHA_ADAPTER_SIM_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000160 VOLTHA_ADAPTER_SIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000161 VOLTHA_ADAPTER_OPEN_OLT_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000162 VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000163 VOLTHA_ADAPTER_OPEN_ONU_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000164 VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000165 ONOS_API_PORT \
166 ONOS_SSH_PORT \
167 VOLTHA_API_PORT \
168 VOLTHA_SSH_PORT \
169 VOLTHA_ETCD_PORT \
170 "
David Bainbridge01294952019-07-30 19:33:45 +0000171
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000172# Iterate over yes/no configuration options and validate
173for VAR in $ALL_YES_NO; do
174 eval $VAR=$(verify_yes_no $VAR)
175 if [ "$(eval echo \$$VAR)" == "INVALID" ]; then
176 exit 1;
177 fi
178done
David Bainbridgeb270c202019-07-26 01:44:42 +0000179
David Bainbridge0774b232019-08-02 06:37:19 +0000180mkdir -p .voltha
181touch .voltha/ports
182HAVE=$(grep $NAME .voltha/ports)
183if [ "$HAVE X" == " X" ]; then
184 # Find free port prefix
185 START=81
186 while true; do
187 if [ $(grep -c $START .voltha/ports) -eq 0 ]; then
188 break
189 fi
190 START=$(expr $START + 1)
191 done
192 DELTA=$(expr $START - 81)
David Bainbridgea2595422019-10-22 03:54:28 +0000193 ONOS_API_PORT=${ONOS_API_PORT:-${START}81}
194 ONOS_SSH_PORT=${ONOS_SSH_PORT:-${START}01}
195 VOLTHA_API_PORT=${VOLTHA_API_PORT:-5$(expr 55 + $DELTA)55}
196 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(expr 50 + $DELTA)22}
197 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(expr 23 + $DELTA)79}
Test User01ed0642019-07-03 20:17:06 +0000198else
David Bainbridge0774b232019-08-02 06:37:19 +0000199 VALUES=$(echo $HAVE | sed -e 's/\s//g' | cut -d= -f2)
David Bainbridgea2595422019-10-22 03:54:28 +0000200 ONOS_API_PORT=${ONOS_API_PORT:-$(echo $VALUES | cut -d, -f1)}
201 ONOS_SSH_PORT=${ONOS_SSH_PORT:-$(echo $VALUES | cut -d, -f2)}
202 VOLTHA_API_PORT=${VOLTHA_API_PORT:-$(echo $VALUES | cut -d, -f3)}
203 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(echo $VALUES | cut -d, -f4)}
204 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(echo $VALUES | cut -d, -f5)}
Test User01ed0642019-07-03 20:17:06 +0000205fi
206
David Bainbridge0774b232019-08-02 06:37:19 +0000207PORTTMP=$(mktemp -u)
208cat .voltha/ports | grep -v $NAME > $PORTTMP
209echo "$NAME=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $PORTTMP
210cp $PORTTMP .voltha/ports
211rm -f $PORTTMP
212
David Bainbridge27790d62019-08-13 22:43:19 +0000213export ONOS_API_PORT ONOS_SSH_PORT
David Bainbridge01294952019-07-30 19:33:45 +0000214
Test Userd87942b2019-07-03 07:20:24 +0000215IDX=1
David Bainbridgee87067b2019-08-12 22:00:12 +0000216CLOCK="TIME:"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000217SPIN_PARTS=
218NOT_VERIFIED=
David Bainbridgef858a022019-08-14 21:25:11 +0000219THEX=
220BUILD=
221CROSS=
222ENTER=
David Bainbridge38dc1e82019-08-12 15:18:45 +0000223VERIFIED=
224HELM=
225OLD_KEY=
226BIRD=
227HIGH_VOLTAGE=
228PLUG=
229RESTART=
230FORWARD=
231INSTALL=
232STOP=
233GO=
234DOWNLOAD=
235GEAR=
236NO_ENTRY=
237LOCK=
238
239if [ $FANCY -eq 1 ]; then
240 SPIN_PARTS="\
241 \xe2\xa2\x8e\xe2\xa1\xb0 \
242 \xe2\xa2\x8e\xe2\xa1\xa1 \
243 \xe2\xa2\x8e\xe2\xa1\x91 \
244 \xe2\xa2\x8e\xe2\xa0\xb1 \
245 \xe2\xa0\x8e\xe2\xa1\xb1 \
246 \xe2\xa2\x8a\xe2\xa1\xb1 \
247 \xe2\xa2\x8c\xe2\xa1\xb1 \
248 \xe2\xa2\x86\xe2\xa1\xb1 \
249 "
David Bainbridgee87067b2019-08-12 22:00:12 +0000250 CLOCK="\xe2\x8f\xb1"
David Bainbridgef858a022019-08-14 21:25:11 +0000251 THEX="${RED}${BOLD}\xe2\x9c\x97\x20${NORMAL}"
252 ENTER="${YELLOW}${BOLD}\xe2\x8e\x86${NORMAL}"
253 CROSS="${YELLOW}${BOLD}\xe2\x9c\x9a${NORMAL}"
254 BUILD="${YELLOW}${BOLD}\xf0\x9f\x8f\x97${NORMAL}"
255 NOT_VERIFIED="$BUILD"
256 VERIFIED="${GREEN}${BOLD}\xe2\x9c\x93\x20${NORMAL}"
257 HELM="${BLUE}${BOLD}\xE2\x8E\x88${NORMAL}"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000258 OLD_KEY="\xF0\x9F\x97\x9D"
259 BIRD="\xF0\x9F\x90\xA6"
260 HIGH_VOLTAGE="\xE2\x9A\xA1"
261 PLUG="\xF0\x9F\xa7\xa9"
262 RESTART="\xf0\x9f\x94\x84"
263 FORWARD="\xE2\x87\xA8"
264 INSTALL="\xF0\x9F\x8F\x97"
265 STOP="\xf0\x9f\x9b\x91"
266 GO="\xf0\x9f\x9a\x80"
267 DOWNLOAD="\xf0\x9f\x93\xa5"
268 GEAR="\xe2\x9a\x99"
269 NO_ENTRY="\xe2\x9b\x94"
270 LOCK="\xf0\x9f\x94\x92"
271fi
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700272
David Bainbridge712afb82019-08-14 19:55:58 +0000273duration() {
David Bainbridgee87067b2019-08-12 22:00:12 +0000274 local h=$(expr $1 / 3600)
275 local m=$(expr $1 % 3600 / 60)
276 local s=$(expr $1 % 60)
277 local t=""
278
279 if [ $h -gt 0 ]; then
280 t="$t${h}h"
281 fi
282 if [ $m -gt 0 ]; then
283 t="$t${m}m"
284 fi
David Bainbridge712afb82019-08-14 19:55:58 +0000285 echo "$t${s}s"
286}
287
288printtime() {
289 local INDENT=
290 if [ "$1" == "-" ]; then
291 INDENT=" "
292 shift
293 fi
294 echo -e "$INDENT $CLOCK $(duration $1)"
David Bainbridgee87067b2019-08-12 22:00:12 +0000295}
296
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700297bspin() {
Test Userd87942b2019-07-03 07:20:24 +0000298 IDX=1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700299 local INDENT=
300 if [ "$1" == "-" ]; then
301 INDENT=" "
302 shift
303 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000304 if [ $FANCY -eq 0 ]; then
305 LINE=$(echo $* | sed -e 's/[\s+-]//g')
306 if [ "$LINE X" == " X" ]; then
307 return
308 fi
309 echo -e "$CIVIS$INDENT$*"
310 else
311 echo -en "$CIVIS$INDENT $*"
312 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700313}
314
315sspin() {
316 local INDENT=
317 if [ "$1" == "-" ]; then
318 INDENT=" "
319 shift
320 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000321 if [ $FANCY -eq 0 ]; then
322 LINE=$(echo $* | sed -e 's/[\s+-]//g')
323 if [ "$LINE X" == " X" ]; then
324 return
325 fi
326 echo -e "$INDENT$*"
327 else
328 C=$(echo $SPIN_PARTS | cut '-d ' -f $IDX)
329 echo -en "\r$INDENT$C $*"
330 IDX=$(expr $IDX + 1)
331 if [ $IDX -gt 8 ]; then
332 IDX=1
333 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700334 fi
335}
336
337espin() {
338 local INDENT=
339 if [ "$1" == "-" ]; then
340 INDENT=" "
341 shift
342 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000343 if [ $FANCY -eq 0 ]; then
344 LINE=$(echo $* | sed -e 's/[\s+-]//g')
345 if [ "$LINE X" == " X" ]; then
346 return
347 fi
348 echo -e "$INDENT$*"
349 else
350 echo -e "\r$INDENT$*$CNORM"
351 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700352}
353
David Bainbridgeac7f8072019-08-01 22:15:33 +0000354if [ "$1" == "get" -a "$2" == "voltconfig" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000355 echo "$HOME/.volt/config-$NAME"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000356 exit
357fi
358
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700359if [ $# -ne 1 -o $(echo ":up:down:dump:" | grep -c ":$1:") -ne 1 ]; then
David Bainbridgeac7f8072019-08-01 22:15:33 +0000360 >&2 echo "What wouild you like to do today:"
361 >&2 echo " up - bring up voltha"
362 >&2 echo " down - tear down voltha"
363 >&2 echo " dump - create a debug dump of running system"
364 exit 1
365fi
366
David Bainbridge4f1b5562019-08-19 04:46:52 +0000367push_onos_config() {
368 local MSG=$1
369 local RESOURCE=$2
370 local DATA=$3
371
372 bspin - "$MSG $GEAR"
373 while true; do
374 (set -x; curl --fail -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://127.0.0.1:$ONOS_API_PORT/onos/v1/$RESOURCE --data @$DATA >>$LOG 2>&1) >>$LOG 2>&1
375 if [ $? -eq 0 ]; then
376 break
377 fi
378 sleep .2
379 sspin -
380 done
381 espin - $VERIFIED
382}
383
384override_onos_app() {
385 local APP=$1
386 local NAME=$(basename $APP | sed -e 's/^[0-9][0-9]*-//g' -e 's/-.*$//g')
387 while true; do
388 sspin -
389 # Attempt to delete old version (if it exists)
390 (set -x; curl --fail -sSL --user karaf:karaf -X DELETE http://127.0.0.1:$ONOS_API_PORT/onos/v1/applications/$NAME >>$LOG 2>&1) >>$LOG 2>&1
391 sspin -
392 if [ $? -ne 0 ]; then
393 continue
394 fi
395 (set -x; curl --fail -sSL --user karaf:karaf -X POST -H Content-Type:application/octet-stream http://127.0.0.1:$ONOS_API_PORT/onos/v1/applications?activate=true --data-binary @$APP >>$LOG 2>&1) >>$LOG 2>&1
396 if [ $? -eq 0 ]; then
397 break
398 fi
399 sleep .2
400 done
401}
402
403activate_onos_app() {
404 local MSG="$1"
405 local APP=$2
406
407 bspin - "$MSG $GO"
408 while true; do
409 sspin -
410 (set -x; curl --fail -sSL --user karaf:karaf -X POST http://127.0.0.1:$ONOS_API_PORT/onos/v1/applications/$APP/active >>$LOG 2>&1) >>$LOG 2>&1
411 if [ $? -eq 0 ]; then
412 break
413 fi
414 sleep .2
415 done
416 espin - "$VERIFIED"
417}
418
419count_pods() {
420 local NAMESPACE=$1; shift
421 if [ "$NAMESPACE" == "all-namespaces" ]; then
422 NAMESPACE="--all-namespaces"
423 else
424 NAMESPACE="-n $NAMESPACE"
425 fi
426 echo "$NAMESPACE" > /tmp/t
427 local STATES=$1; shift
428 echo "$STATES" >> /tmp/t
429 local PODS=$(kubectl get $NAMESPACE pod -o go-template="{{range .items}}{{.metadata.name}}/{{.status.phase}}/_{{range .status.containerStatuses}}{{.ready}}_{{end}} {{end}}")
430 local COUNT=0
431 local PATTERNS="$*"
432 for POD in $PODS; do
433 local NAME=$(echo $POD | cut -d/ -f 1)
434 local STATE=$(echo $POD | cut -d/ -f 2)
435 local CONTAINERS=$(echo $POD | cut -d/ -f 3 | sed -e 's/_/ /g')
436 if [ "$STATES" == "*" -o $(echo "$STATES" | grep -c ":$STATE:") -ne 0 ]; then
437 echo "IN WITH $POD" >> /tmp/t
438 local TOTAL=$(echo $CONTAINERS | wc -w)
439 local FOUND=$(echo $CONTAINERS | grep -o true | wc -l)
440 if [ $TOTAL -eq $FOUND ]; then
441 for PATTERN in $PATTERNS; do
442 echo "TEST $PATTERN AGAINST $NAME" >> /tmp/t
443 if [[ $NAME =~ $PATTERN ]]; then
444 echo "COUNT $NAME" >> /tmp/t
445 COUNT=$(expr $COUNT + 1)
446 break
447 fi
448 done
449 fi
450 fi
451 done
452 echo $COUNT >> /tmp/t
453 echo $COUNT
454}
455
456wait_for_pods() {
457 local INDENT=
458 if [ "$1" == "-" ]; then
459 INDENT=$1; shift
460 fi
461 local NAMESPACE=$1; shift
462 local EXPECT=$1; shift
463 local TYPE=$1; shift
464 local RETRY=$1; shift
465 local MESSAGE=$1; shift
466 local PATTERNS=$*
David Bainbridge99ac7a22019-08-31 02:26:43 +0000467 local STATES=":Running:"
468 if [ "$TYPE" == "not" ]; then
469 STATES="*"
470 fi
471 local HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000472 local ALL=$HAVE
473 if [ "$TYPE" == "only" ]; then
474 ALL=$(count_pods "all-namespaces" "*" ".*")
475 fi
476 COUNT=$(expr 300 / 15)
477 bspin $INDENT $MESSAGE
478 sspin $INDENT
479 if [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; then
480 while [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; do
481 sspin $INDENT
482 COUNT=$(expr $COUNT - 1)
483 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000484 HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000485 ALL=$HAVE
486 if [ "$TYPE" == "only" ]; then
487 ALL=$(count_pods "all-namespaces" "*" ".*")
488 fi
489 COUNT=$(expr 300 / 15)
490 fi
491 sleep .15
492 done
493 fi
494 espin $INDENT $VERIFIED
495 if [ $HAVE -ne $EXPECT ]; then
496 return 1
497 fi
498 return 0
499}
500
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800501port_forward() {
502 local NS=$1
503 local SVC=$2
504 local FROM_PORT=$3
505 local TO_PORT=$4
506 local TAG=$SVC-$NAME
507
508 (set -x; _TAG=$TAG bash -c "while true; do kubectl port-forward -n $NS service/$SVC $FROM_PORT:$TO_PORT; done" >>$LOG 2>&1 &) >>$LOG 2>&1
509}
510
511kill_port_forward() {
512 local TAG=$1-$NAME
David Bainbridgec6871d22019-11-13 17:10:31 +0000513 local P_IDS=$(ps e -ww -A | grep "_TAG=$TAG" | grep -v grep | awk '{print $1}')
David Bainbridgebcf235b2019-11-12 21:33:58 +0000514 local PARENTS=
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800515 local KIDS=
David Bainbridgec6871d22019-11-13 17:10:31 +0000516 local UNKNOWN=
517 if [ ! -z "$P_IDS" ]; then
518 for P_ID in $P_IDS; do
519 local PP_ID=$(ps -o ppid $P_ID | tail -n +2)
520 if [ ! -z "$PP_ID" ]; then
521 if [ $PP_ID -eq 1 ]; then
522 PARENTS="$PARENTS $P_ID"
523 else
524 KIDS="$KIDS $P_ID"
525 fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800526 else
David Bainbridgec6871d22019-11-13 17:10:31 +0000527 UNKNOWN="$UNKNOWN $P_ID"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800528 fi
529 done
David Bainbridgec6871d22019-11-13 17:10:31 +0000530 (set -x; kill -9 $PARENTS $KIDS $UNKNOWN >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800531 fi
532}
533
David Bainbridgeac7f8072019-08-01 22:15:33 +0000534if [ "$1" == "down" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000535 echo "Tearing down voltha cluster $NAME"
536 LOG="down-$NAME.log"
537 echo $(date -u +"%Y%m%dT%H%M%SZ") >$LOG
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800538 bspin "Remove port-forwards: onos-ui-$NAME"
539 kill_port_forward onos-ui
540 sspin "Remove port-forwards: onos-ssh-$NAME$CEOL"
541 kill_port_forward onos-ssh
542 sspin "Remove port-forwards: voltha-api-$NAME$CEOL"
543 kill_port_forward voltha-api
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800544 sspin "Remove port-forwards: voltha-etcd-$NAME$CEOL"
545 kill_port_forward voltha-etcd-cluster-client
546 espin "$VERIFIED Remove port-forwards$CEOL"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000547 if [ $DEPLOY_K8S == "yes" ]; then
548 if [ -x ./bin/kind ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000549 bspin "Delete Kubernetes Kind Cluster"
550 (set -x; ./bin/kind delete cluster --name voltha-$NAME >>$LOG 2>&1) >>$LOG 2>&1
551 espin $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +0000552 else
David Bainbridge0774b232019-08-02 06:37:19 +0000553 espin "$NO_ENTRY Delete Kubernetes Kind Cluster: kind command not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000554 fi
555 else
556 EXISTS=$(helm list -q)
557 EXPECT="etcd-operator onos open-olt open-onu sim voltha bbsim radius"
David Bainbridge0774b232019-08-02 06:37:19 +0000558 bspin "Remove Helm Deployments"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000559 for i in $EXISTS; do
560 if [ $(echo $EXPECT | grep -c $i) -eq 1 ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000561 sspin "Remove Helm Deployments: $i$CEOL"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800562 (set -x; ./bin/helm delete --no-hooks --purge $i >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000563 fi
564 done
David Bainbridge0774b232019-08-02 06:37:19 +0000565 espin "$VERIFIED Remove Helm Deployments$CEOL"
David Bainbridge4f1b5562019-08-19 04:46:52 +0000566 if [ "$WAIT_ON_DOWN" == "yes" ]; then
567 # There should only be 13 or 15 PODs in the kube-system name
568 # space and no other PODs
David Bainbridge4f1b5562019-08-19 04:46:52 +0000569 PODS="coredns-.* \
570 etcd-voltha-$NAME-control-plane \
571 kindnet-.* \
572 kube-apiserver-voltha-$NAME-control-plane \
573 kube-controller-manager-voltha-$NAME-control-plane \
574 kube-proxy-.* \
575 kube-scheduler-voltha-$NAME-control-plane \
576 tiller-deploy-.*"
577 EXPECT=$(test "$TYPE" == "minimal" && echo "13" || echo "15")
David Bainbridge99ac7a22019-08-31 02:26:43 +0000578 PODS="adapter-.* \
579 bbsim.* \
580 etcd-operator.* \
581 radius.* \
582 voltha-.*"
583 EXPECT=0
584
585 wait_for_pods "voltha" $EXPECT "not" -1 "Waiting for VOLTHA PODs to terminate" $PODS
David Bainbridge4f1b5562019-08-19 04:46:52 +0000586 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000587 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700588 exit
David Bainbridgeac7f8072019-08-01 22:15:33 +0000589fi
590
591if [ "$1" == "dump" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000592 LOG="dump-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000593 TS=$(date -u +"%Y%m%dT%H%M%SZ")
David Bainbridge76514a02019-10-08 01:50:35 +0000594 if [ ! -z "$DUMP_FROM" ]; then
595 TS=$(echo $DUMP_FROM | sed -e 's/[:-]//g')
596 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000597 WORK=$(mktemp -u -d)
David Bainbridge0774b232019-08-02 06:37:19 +0000598 DATA=$WORK/voltha-debug-dump-$NAME-$TS
David Bainbridgeac7f8072019-08-01 22:15:33 +0000599 mkdir -p $DATA
600 echo $TS > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000601 echo -e "Capturing debug dump to voltha-debug-dump-$NAME-$TS.tgz"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000602 bspin - "Copy install log"
David Bainbridge0774b232019-08-02 06:37:19 +0000603 if [ -f install-$NAME.log ]; then
604 (set -x; cp install-$NAME.log $DATA/install-$NAME.log) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000605 espin - $VERIFIED
606 else
David Bainbridge0774b232019-08-02 06:37:19 +0000607 espin - "$NO_ENTRY Copy install log: install-$NAME.log not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000608 fi
609 bspin - "Dumping Kubernetes PODs"
610 (set -x; kubectl get --all-namespaces pods >> $DATA/all-pods.txt 2>&1) >>$LOG 2>&1
611 espin - $VERIFIED
612 bspin - "Dumping Kubernetes SERVICEs"
613 (set -x; kubectl get --all-namespaces svc >> $DATA/all-services.txt 2>&1) >>$LOG 2>&1
614 espin - $VERIFIED
615 bspin - "Dumping Kubernetes EVENTs"
616 (set -x; kubectl get --all-namespaces events >> $DATA/all-events.txt 2>&1) >>$LOG 2>&1
617 espin - $VERIFIED
618 bspin - "Dumping VOLTHA POD details"
Matteo Scandolodcd29f52019-10-07 15:42:42 -0700619 PODS="$(kubectl -n default get pod -o name | grep onos | sed -e 's/^/default:/g') $(kubectl get -n voltha pod -o name | sed -e 's/^/voltha:/g')"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000620 SINCE=
621 if [ ! -z "$DUMP_FROM" ]; then
622 SINCE="--since-time=$DUMP_FROM"
623 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000624 for POD in $PODS; do
David Bainbridge1f0655a2019-10-01 22:08:48 +0000625 NS=$(echo $POD | cut -d: -f1)
626 POD=$(echo $POD | cut -d: -f2)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000627 sspin - "Dumping VOLTHA POD details: $POD$CEOL"
628 mkdir -p $DATA/$POD
David Bainbridge1f0655a2019-10-01 22:08:48 +0000629 (set -x; kubectl describe -n $NS $POD >> $DATA/$POD/describe.txt 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000630 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000631 (set -x; kubectl logs -n $NS --all-containers $SINCE --previous $LOG_ARGS $POD >> $DATA/$POD/logs-previous.txt 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000632 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000633 (set -x; kubectl logs -n $NS --all-containers $SINCE $LOG_ARGS $POD >> $DATA/$POD/logs-current.txt 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000634 sspin - "Dumping VOLTHA POD details: $POD"
635 done
636 espin - "$VERIFIED Dumping VOLTHA POD details$CEOL"
637 bspin - "Dumping ETCD"
638 if [ "$(which etcdctl) X" != " X" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000639 (set -x; ETCDCTL_API=3 etcdctl --endpoints localhost:$VOLTHA_ETCD_PORT get --prefix service/voltha | hexdump -C >> $DATA/etcd.hex 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000640 espin - $VERIFIED
641 else
642 espin - "$NO_ENTRY Dumping ETCD: etcdctl command not available"
643 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000644 bspin - "Creating compressed TAR: voltha-debug-dump-$NAME-$TS.tgz"
645 (set -x; tar -C $WORK -zcf voltha-debug-dump-$NAME-$TS.tgz ./voltha-debug-dump-$NAME-$TS) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000646 espin - $VERIFIED
647 bspin - "Cleanup"
648 (set -x; rm -rf $WORK) >>$LOG 2>&1
649 espin - $VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000650 bspin - "$(ls -l voltha-debug-dump-$NAME-$TS.tgz)"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000651 espin - $VERIFIED
652 exit
653fi
654
David Bainbridge0774b232019-08-02 06:37:19 +0000655LOG="install-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000656date > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000657echo "PORTS=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000658
659# Output install options to log
660echo "OPTIONS" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000661for O in $ALL_OPTIONS; do
662 VAL=$(eval echo \$$O)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000663 if [ ! -z "$VAL" ]; then
664 printf " %-30s = %s\n" $O $VAL >> $LOG
665 fi
666done
667
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700668helm_install() {
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700669 local INDENT=
670 if [ "$1" == "-" ]; then
671 INDENT=$1; shift
672 fi
673 local NAMESPACE=$1; shift
David Bainbridge0774b232019-08-02 06:37:19 +0000674 local INAME=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700675 local CHART=$1; shift
David Bainbridge90fd8e32019-08-21 23:32:47 +0000676 local CHART_VERSION=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700677 local MESSAGE=$*
678
David Bainbridge90fd8e32019-08-21 23:32:47 +0000679 if [ "$CHART_VERSION X" != " X" -a "$CHART_VERSION" != "latest" ]; then
680 CHART_VERSION="--version $CHART_VERSION"
681 else
682 CHART_VERSION=
683 fi
684
David Bainbridge99ac7a22019-08-31 02:26:43 +0000685 local CHART_ARGS=
686 if [ -r "${INAME}-values.yaml" ]; then
687 CHART_ARGS="-f ${INAME}-values.yaml"
688 fi
689
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700690 COUNT=$(expr 300 / 15)
691 bspin $INDENT $MESSAGE
David Bainbridge70c0ea82019-11-14 23:25:26 +0000692 (set -x; helm install -f $NAME-values.yaml $CHART_ARGS $EXTRA_HELM_INSTALL_ARGS --set defaults.log_level=$VOLTHA_LOG_LEVEL --namespace $NAMESPACE --name $INAME $CHART_VERSION $EXTRA_HELM_FLAGS $CHART >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700693 SUCCESS=$?
694 while [ $SUCCESS -ne 0 ]; do
695 sspin $INDENT
696 COUNT=$(expr $COUNT - 1)
697 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000698 (set -x; helm install -f $NAME-values.yaml $CHART_ARGS --set defaults.log_level=$VOLTHA_LOG_LEVEL --namespace $NAMESPACE --name $INAME $CHART_VERSION $EXTRA_HELM_FLAGS $CHART >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700699 COUNT=$(expr 300 / 15)
700 fi
701 sleep .15
702 done
703 espin $INDENT $VERIFIED
704}
705
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700706echo "INSTALL TYPE: $TYPE" >> $LOG
707
708bspin "Verify GOPATH"
709export GOPATH=$(pwd)
Test User3d7ad8e2019-07-03 06:15:44 +0000710mkdir -p $GOPATH/bin
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700711espin $VERIFIED
712
David Bainbridgee87067b2019-08-12 22:00:12 +0000713STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700714if [ "$INSTALL_KUBECTL" == "no" ]; then
715 bspin "Skip kubectl install"
716 espin $NO_ENTRY
Test Userc13bdc92019-07-03 20:57:49 +0000717else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700718 bspin "Verify kubectl $HELM"
719 if [ -x $GOPATH/bin/kubectl ]; then
720 espin $VERIFIED
721 else
722 espin $NOT_VERIFIED
723 bspin - "Download and install Kubernetes/kubectl $DOWNLOAD"
724 (set -x; curl -o $GOPATH/bin/kubectl -sSL https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/$HOSTOS/$HOSTARCH/kubectl >>$LOG 2>&1) >>$LOG 2>&1
725 (set -x; chmod 755 $GOPATH/bin/kubectl >>$LOG 2>&1) >>$LOG 2>&1
726 espin - $VERIFIED
727 fi
Test Userc13bdc92019-07-03 20:57:49 +0000728fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000729if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000730 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000731fi
Test Userc13bdc92019-07-03 20:57:49 +0000732
David Bainbridgee87067b2019-08-12 22:00:12 +0000733STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700734if [ "$DEPLOY_K8S" == "no" ]; then
735 bspin "Skip Kubernetes/Kind Deployment"
736 espin $NO_ENTRY
737else
Test Userba1e7e72019-07-10 22:27:54 +0000738 bspin "Verify Kubernetes/Kind $HELM"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800739 IS_INSTALLED=0
740 OP_TYPE="install"
Test Userba1e7e72019-07-10 22:27:54 +0000741 if [ -x $GOPATH/bin/kind ]; then
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800742 OP_TYPE="upgrade"
743 if [ $($GOPATH/bin/kind --version | grep -c $KIND_VERSION) -eq 1 ]; then
744 IS_INSTALLED=1
745 espin $VERIFIED
746 fi
747 fi
748 if [ $IS_INSTALLED -eq 0 ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000749 espin $NOT_VERIFIED
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800750 bspin - "Download and $OP_TYPE Kubernetes/kind $DOWNLOAD"
David Bainbridge9e2a6662019-07-11 17:07:57 +0000751 (set -x; curl -o $GOPATH/bin/kind -sSL https://github.com/kubernetes-sigs/kind/releases/download/$KIND_VERSION/kind-$HOSTOS-$HOSTARCH >>$LOG 2>&1) >>$LOG 2>&1
Test Userba1e7e72019-07-10 22:27:54 +0000752 (set -x; chmod 755 $GOPATH/bin/kind >>$LOG 2>&1) >>$LOG 2>&1
753 espin - $VERIFIED
754 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700755fi
756
David Bainbridgee87067b2019-08-12 22:00:12 +0000757if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000758 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000759fi
760
761STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700762if [ "$INSTALL_HELM" == "no" ]; then
763 bspin "Skip Helm Install"
764 espin $NO_ENTRY
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700765else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700766 bspin "Verify Helm $HELM"
767 if [ -x $GOPATH/bin/helm ]; then
768 espin $VERIFIED
769 else
770 espin $NOT_VERIFIED
771 bspin - "Download and install Helm $DOWNLOAD"
David Bainbridgec6a6eb62019-10-18 22:50:07 +0000772 (set -x; curl -sSL https://git.io/get_helm.sh | DESIRED_VERSION=v2.14.3 USE_SUDO=false HELM_INSTALL_DIR=$GOPATH/bin bash >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700773 espin - $VERIFIED
774 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700775fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800776
David Bainbridgee87067b2019-08-12 22:00:12 +0000777if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000778 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000779fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700780
David Bainbridgee87067b2019-08-12 22:00:12 +0000781STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000782bspin "Verify voltctl $HIGH_VOLTAGE"
David Bainbridged2811972019-12-14 01:14:09 +0000783VOK=0
784VMESSAGE="install"
Test User3d7ad8e2019-07-03 06:15:44 +0000785if [ -x $GOPATH/bin/voltctl ]; then
David Bainbridge1ba64f12019-12-18 00:40:13 +0000786 VHAVE=$($GOPATH/bin/voltctl version --clientonly -o json | jq -r .version)
787 if [ $? -eq 0 -a "$VHAVE" == "$VOLTCTL_VERSION" ]; then
David Bainbridged2811972019-12-14 01:14:09 +0000788 VOK=1
David Bainbridge1ba64f12019-12-18 00:40:13 +0000789 espin $VERIFIED
790 else
791 VMESSAGE="upgrade"
David Bainbridged2811972019-12-14 01:14:09 +0000792 fi
793fi
794
David Bainbridge1ba64f12019-12-18 00:40:13 +0000795if [ $VOK -eq 0 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700796 espin $NOT_VERIFIED
David Bainbridged2811972019-12-14 01:14:09 +0000797 bspin - "Download and $VMESSAGE voltctl $DOWNLOAD"
David Bainbridge28c64462019-12-12 22:25:26 +0000798 (set -x; curl -o $GOPATH/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v$VOLTCTL_VERSION/voltctl-$VOLTCTL_VERSION-$HOSTOS-$HOSTARCH >>$LOG 2>&1) >>$LOG 2>&1
Test User08ebbd92019-07-03 17:15:39 +0000799 (set -x; chmod 755 $GOPATH/bin/voltctl >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700800 espin - $VERIFIED
801fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000802if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000803 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000804fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700805
806bspin "Verify command PATH"
Test Userba1e7e72019-07-10 22:27:54 +0000807export PATH=$GOPATH/bin:$PATH
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700808espin $VERIFIED
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700809
David Bainbridgee87067b2019-08-12 22:00:12 +0000810STIME=$(date +%s)
Test Userba1e7e72019-07-10 22:27:54 +0000811if [ "$DEPLOY_K8S" == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000812 HAVE=$(kind get clusters | grep -c voltha-$NAME)
Test Userba1e7e72019-07-10 22:27:54 +0000813 bspin "Verify Kubernetes/Kind Cluster"
814 sspin
815 if [ $HAVE -eq 0 ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000816 espin $NOT_VERIFIED
817 bspin - "Verify cluster configuration"
David Bainbridge0774b232019-08-02 06:37:19 +0000818 if [ ! -r ./$NAME-cluster.cfg ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000819 espin - $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000820 bspin - "Download cluster configuration: $TYPE-cluster.cfg to $NAME-cluster.cfg $DOWNLOAD"
821 (set -x; curl -o ./$NAME-cluster.cfg -sSL https://raw.githubusercontent.com/ciena/kind-voltha/master/$TYPE-cluster.cfg >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700822 espin - $VERIFIED
823 else
824 espin - $VERIFIED
825 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000826 kind create cluster --name voltha-$NAME --config $NAME-cluster.cfg
David Bainbridge491b1bd2019-07-11 17:53:11 +0000827 else
828 espin $VERIFIED
Test Userba1e7e72019-07-10 22:27:54 +0000829 fi
830
David Bainbridge0774b232019-08-02 06:37:19 +0000831 export KUBECONFIG="$(kind get kubeconfig-path --name="voltha-$NAME")"
Test Userba1e7e72019-07-10 22:27:54 +0000832 P="coredns-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000833 etcd-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000834 kindnet-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000835 kube-apiserver-voltha-$NAME-control-plane \
836 kube-controller-manager-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000837 kube-proxy-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000838 kube-scheduler-voltha-$NAME-control-plane"
Test Userba1e7e72019-07-10 22:27:54 +0000839
840 EXPECT=$(test "$TYPE" == "minimal" && echo "12" || echo "14")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000841 wait_for_pods - "kube-system" $EXPECT "includes" -1 "Waiting for system PODs to start" $P
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700842fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000843if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000844 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000845fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700846
David Bainbridgee87067b2019-08-12 22:00:12 +0000847STIME=$(date +%s)
David Bainbridge4c6289c2019-09-03 21:11:32 +0000848COUNT=$(count_pods "kube-system" ":Running:" "tiller-deploy-.*")
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700849bspin "Verify Helm"
Test Userba1e7e72019-07-10 22:27:54 +0000850if [ $COUNT -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700851 espin $NOT_VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000852 echo -e "Configuring Helm $GEAR"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700853 if [ "$INSTALL_HELM" == "no" ]; then
854 bspin - "Skip Helm/Tiller Initialization"
855 espin - $NO_ENTRY
856 else
857 bspin - "Initialize Helm"
858 (set -x; helm init --upgrade >>$LOG 2>&1) >>$LOG 2>&1
859 espin - $VERIFIED
David Bainbridge4f1b5562019-08-19 04:46:52 +0000860 wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700861 fi
Test Userb5712372019-07-03 21:52:17 +0000862 bspin - "Add Google Incubator repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700863 (set -x; helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
864 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700865
Test Userba1e7e72019-07-10 22:27:54 +0000866 # HACK (sort-of) - the config for tiller is about to be patched, which will
867 # cause the tiller pod to be recreated. This can sometimes cause a timing
868 # issue with the "wait_for_pods" call on tiller as it may incorrectly
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700869 # identify the running/ready tiller pod that is soon to be terminated as
Test Userba1e7e72019-07-10 22:27:54 +0000870 # what it is waiting for. To avoid this issue we do a clean scale down and
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700871 # scale up of the pod so the script controlls when it should be expecting
Test Userba1e7e72019-07-10 22:27:54 +0000872 # things
873 (set -x; kubectl -n kube-system scale deploy tiller-deploy --replicas=0 >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700874
Test Userb5712372019-07-03 21:52:17 +0000875 bspin - "Add Google Stable repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700876 (set -x; helm repo add stable https://kubernetes-charts.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
877 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000878 bspin - "Add ONF repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700879 (set -x; helm repo add onf https://charts.opencord.org >>$LOG 2>&1) >>$LOG 2>&1
880 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000881 bspin - "Update Helm repository cache"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700882 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
883 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700884
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700885 # Create and k8s service account so that Helm can create pods
Test Userb5712372019-07-03 21:52:17 +0000886 bspin - "Create Tiller ServiceAccount"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700887 (set -x; kubectl create serviceaccount --namespace kube-system tiller >>$LOG 2>&1) >>$LOG 2>&1
888 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000889 bspin - "Create Tiller ClusterRoleBinding"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700890 (set -x; kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller >>$LOG 2>&1) >>$LOG 2>&1
891 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000892 bspin - "Update Tiller Manifest"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700893 (set -x; kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}' >>$LOG 2>&1) >>$LOG 2>&1
Test Userba1e7e72019-07-10 22:27:54 +0000894
895 # HACK (sort-of) - part to, spin it back up
896 (set -x; kubectl -n kube-system scale deploy tiller-deploy --replicas=1 >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700897 espin - $VERIFIED
898else
899 espin $VERIFIED
David Bainbridge46505fb2019-10-01 21:13:20 +0000900 if [ "$UPDATE_HELM_REPOS" == "yes" ]; then
901 bspin - "Update Helm repository cache"
902 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
903 espin - $VERIFIED
904 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700905fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000906wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000907if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000908 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000909fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700910
David Bainbridgee87067b2019-08-12 22:00:12 +0000911STIME=$(date +%s)
David Bainbridge0774b232019-08-02 06:37:19 +0000912bspin "Verify Helm values file: $NAME-values.yaml"
913if [ ! -r "./$NAME-values.yaml" ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000914 espin $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000915 bspin - "Download Helm values file: $TYPE-values.yaml to $NAME-values.yaml $DOWNLOAD"
916 (set -x; curl -o ./$NAME-values.yaml -sSL https://raw.githubusercontent.com/ciena/kind-voltha/master/$TYPE-values.yaml >>$LOG 2>&1) >>$LOG 2>&1
Test Userba1e7e72019-07-10 22:27:54 +0000917 espin - $VERIFIED
918else
919 espin $VERIFIED
920fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000921if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000922 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000923fi
Test Userba1e7e72019-07-10 22:27:54 +0000924
David Bainbridge99ac7a22019-08-31 02:26:43 +0000925STIME=$(date +%s)
926bspin "Verify or download chart specific values files $DOWNLOAD"
927VALUES_FILES="monkey-values.yaml"
928for i in $VALUES_FILES; do
929 if [ ! -r ./$i ]; then
930 (set -x; curl -o ./$i -sSL https://raw.githubusercontent.com/ciena/kind-voltha/master/$i >>$LOG 2>&1) >>$LOG 2>&1
931 fi
932done
933espin $VERIFIED
934if [ "$WITH_TIMINGS" == "yes" ]; then
935 printtime $(expr $(date +%s) - $STIME)
936fi
937
938if [ "$WITH_CHAOS" == "yes" ]; then
939 bspin "Verify or clone kube-monkey helm chart $DOWNLOAD"
940 if [ -r ./kube-monkey ]; then
941 espin $VERIFIED
942 else
943 espin $NOT_VERIFIED
944 bspin - "GIT clone kube-monkey"
945 (set -x; git clone https://github.com/asobti/kube-monkey kube-monkey >>$LOG 2>&1) >>$LOG 2>&1
946 espin - $VERIFIED
947 fi
948fi
949
Test Userba1e7e72019-07-10 22:27:54 +0000950if [ "$JUST_K8S" == "yes" ]; then
951 echo "Environment deployed, not deploying VOLTHA artifacts as requested. Good bye."
952 echo ""
953 echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
954 echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
955 echo "tools required by VOLTHA in your command path. " | tee -a $LOG
956 echo "" | tee -a $LOG
957 echo -en $BOLD
958 if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000959 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +0000960 fi
961 echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
962 echo -en $NORMAL
963 echo "" | tee -a $LOG
964 echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
965 exit 0
966fi
967
David Bainbridgee87067b2019-08-12 22:00:12 +0000968STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000969bspin "Verify ETCD Operator $OLD_KEY"
Test User7d866122019-07-09 17:52:35 +0000970if [ $(helm list --deployed --short --namespace voltha "^etcd-operator\$" | wc -l) -ne 1 ]; then
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700971 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +0000972 helm_install - voltha etcd-operator stable/etcd-operator latest "Install ETCD Operator"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700973else
974 espin $VERIFIED
975fi
Test User01ed0642019-07-03 20:17:06 +0000976EXPECT=$(test "$TYPE" == "minimal" && echo "1" || echo "3")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000977wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for ETCD Operator to start" "etcd-operator-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000978if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000979 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000980fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700981
David Bainbridgee87067b2019-08-12 22:00:12 +0000982STIME=$(date +%s)
David Bainbridgeb270c202019-07-26 01:44:42 +0000983if [ $WITH_ONOS == "yes" ]; then
984 bspin "Verify ONOS installed $BIRD"
985 if [ $(helm list --deployed --short --namespace default "^onos\$" | wc -l) -ne 1 ]; then
986 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +0000987 EXTRA_HELM_FLAGS="$SET_TAG $EXTRA_HELM_FLAGS" helm_install - default onos onf/onos latest "Install ONOS"
David Bainbridgeb270c202019-07-26 01:44:42 +0000988 else
989 espin $VERIFIED
990 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000991 wait_for_pods - "default" 1 "includes" -1 "Waiting for ONOS to start" "onos-.*"
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700992
David Bainbridgeb270c202019-07-26 01:44:42 +0000993 bspin - "Forward ONOS API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800994 kill_port_forward onos-ui
995 port_forward default onos-ui $ONOS_API_PORT 8181
David Bainbridgeb270c202019-07-26 01:44:42 +0000996 espin - $VERIFIED
997 bspin - "Forward ONOS SSH port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800998 kill_port_forward onos-ssh
999 port_forward default onos-ssh $ONOS_SSH_PORT 8101
David Bainbridgeb270c202019-07-26 01:44:42 +00001000 espin - $VERIFIED
David Bainbridged31d6122019-08-13 19:37:59 +00001001 bspin - "Verify or download ONOS configuration support files $DOWNLOAD"
David Bainbridge2b19e832019-08-16 02:40:53 +00001002 ONOS_FILES="olt-onos-enableExtraneousRules.json olt-onos-olt-settings.json onos-aaa.json \
David Bainbridge90fd8e32019-08-21 23:32:47 +00001003 onos-dhcpl2relay.json onos-kafka.json onos-sadis-sample.json"
David Bainbridged31d6122019-08-13 19:37:59 +00001004 (set -x; mkdir -p ./onos-files >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge2b19e832019-08-16 02:40:53 +00001005 for i in $ONOS_FILES; do
David Bainbridged31d6122019-08-13 19:37:59 +00001006 if [ ! -r ./onos-files/$i ]; then
1007 (set -x; curl -o ./onos-files/$i -sSL https://raw.githubusercontent.com/ciena/kind-voltha/master/onos-files/$i >>$LOG 2>&1) >>$LOG 2>&1
1008 fi
1009 done
Test Userba1e7e72019-07-10 22:27:54 +00001010 espin - $VERIFIED
David Bainbridge27790d62019-08-13 22:43:19 +00001011
1012 if [ $INSTALL_ONOS_APPS == "yes" ]; then
1013 bspin - "Installing custom ONOS applications"
1014 if [ -x onos-files/onos-apps -a $(ls -1 onos-files/onos-apps/*.oar 2>/dev/null | wc -l) -gt 0 ]; then
1015 for OAR in $(ls -1 onos-files/onos-apps/*.oar); do
1016 sspin - "Installing custom ONOS applications - $OAR$CEOL"
David Bainbridge2b19e832019-08-16 02:40:53 +00001017 override_onos_app $OAR
David Bainbridge27790d62019-08-13 22:43:19 +00001018 done
1019 espin - "$VERIFIED Installing custom ONOS applications$CEOL"
1020 else
1021 espin - "$NOT_VERIFIED Installing custom ONOS applications - None Found"
1022 fi
1023 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001024
David Bainbridge2b19e832019-08-16 02:40:53 +00001025 push_onos_config "Push ONOS Kafka Configuration" "network/configuration/apps/org.opencord.kafka" "onos-files/onos-kafka.json"
1026 push_onos_config "Push ONOS DHCP L2 Relay Configuration" "network/configuration/apps/org.opencord.dhcpl2relay" "onos-files/onos-dhcpl2relay.json"
David Bainbridged31d6122019-08-13 19:37:59 +00001027 push_onos_config "Enable VOLTHA ONOS DHCP provisioning" "configuration/org.opencord.olt.impl.Olt" "onos-files/olt-onos-olt-settings.json"
1028 push_onos_config "Enabling extraneous rules for ONOS" "configuration/org.onosproject.net.flow.impl.FlowRuleManager" "onos-files/olt-onos-enableExtraneousRules.json"
David Bainbridge2b19e832019-08-16 02:40:53 +00001029 if [ -f onos-files/onos-sadis.json ]; then
1030 push_onos_config "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "onos-files/onos-sadis.json"
1031 elif [ "$CONFIG_SADIS" == "yes" ]; then
David Bainbridge90fd8e32019-08-21 23:32:47 +00001032 SADIS_CFG=onos-files/onos-sadis-sample.json
David Bainbridge2b19e832019-08-16 02:40:53 +00001033 push_onos_config "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "$SADIS_CFG"
1034 fi
Test Userba1e7e72019-07-10 22:27:54 +00001035fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001036if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001037 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001038fi
Test Userba1e7e72019-07-10 22:27:54 +00001039
David Bainbridgee87067b2019-08-12 22:00:12 +00001040STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001041bspin "Verify VOLTHA installed $HIGH_VOLTAGE"
Test User7d866122019-07-09 17:52:35 +00001042if [ $(helm list --deployed --short --namespace voltha "^voltha\$" | wc -l) -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001043 espin $NOT_VERIFIED
David Bainbridge70c0ea82019-11-14 23:25:26 +00001044 if [ "$ONLY_ONE" == "yes" ]; then
1045 EXTRA_HELM_INSTALL_ARGS="--set therecanbeonlyone=true"=
1046 fi
David Bainbridge90fd8e32019-08-21 23:32:47 +00001047 helm_install - voltha voltha $VOLTHA_CHART $VOLTHA_CHART_VERSION "Install VOLTHA Core"
David Bainbridge70c0ea82019-11-14 23:25:26 +00001048 EXTRA_HELM_INSTALL_ARGS=
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001049else
1050 espin $VERIFIED
1051fi
Test Userba1e7e72019-07-10 22:27:54 +00001052
David Bainbridge90fd8e32019-08-21 23:32:47 +00001053VOLTHA="voltha-ofagent-.* \
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001054 ro-core.* \
1055 rw-core.* \
1056 voltha-api-server-.* \
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001057 voltha-etcd-cluster-.* \
1058 voltha-kafka-.* \
1059 voltha-zookeeper-.*"
David Bainbridge70c0ea82019-11-14 23:25:26 +00001060if [ "$ONLY_ONE" == "yes" ]; then
David Bainbridge1ba64f12019-12-18 00:40:13 +00001061 EXPECT=$(test "$TYPE" == "minimal" && echo "5" || echo "7")
David Bainbridge70c0ea82019-11-14 23:25:26 +00001062else
David Bainbridge1ba64f12019-12-18 00:40:13 +00001063 EXPECT=$(test "$TYPE" == "minimal" && echo "8" || echo "10")
David Bainbridge70c0ea82019-11-14 23:25:26 +00001064fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001065wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for VOLTHA Core to start" $VOLTHA
David Bainbridgee87067b2019-08-12 22:00:12 +00001066if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001067 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001068fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001069
David Bainbridge46505fb2019-10-01 21:13:20 +00001070if [ "$WITH_ADAPTERS" == "yes" ]; then
1071 STIME=$(date +%s)
1072 EXPECT=0
1073 echo -e "Verify Adapters $PLUG"
1074 if [ "$WITH_SIM_ADAPTERS" == "yes" ]; then
1075 bspin - "Verify Simulated Adapters installed"
1076 if [ $(helm list --deployed --short --namespace voltha "^sim\$" | wc -l) -ne 1 ]; then
1077 espin - $NOT_VERIFIED
1078 helm_install - voltha sim $VOLTHA_ADAPTER_SIM_CHART $VOLTHA_ADAPTER_SIM_CHART_VERSION "Install Simulated Adapters"
1079 else
1080 espin - $VERIFIED
1081 fi
1082 EXPECT=$(expr $EXPECT + 2)
1083 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001084
David Bainbridge46505fb2019-10-01 21:13:20 +00001085 if [ "$WITH_OPEN_ADAPTERS" == "yes" ]; then
1086 bspin - "Verify OpenOLT Adapter installed"
1087 if [ $(helm list --deployed --short --namespace voltha "^open-olt\$" | wc -l) -ne 1 ]; then
1088 espin - $NOT_VERIFIED
1089 helm_install - voltha open-olt $VOLTHA_ADAPTER_OPEN_OLT_CHART $VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION "Install OpenOLT Adapter"
1090 else
1091 espin - $VERIFIED
1092 fi
1093 bspin - "Verify OpenONU Adapter installed"
1094 if [ $(helm list --deployed --short --namespace voltha "^open-onu\$" | wc -l) -ne 1 ]; then
1095 espin - $NOT_VERIFIED
1096 helm_install - voltha open-onu $VOLTHA_ADAPTER_OPEN_ONU_CHART $VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION "Install OpenONU Adapter"
1097 else
1098 espin - $VERIFIED
1099 fi
1100 EXPECT=$(expr $EXPECT + 2)
1101 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001102
David Bainbridge46505fb2019-10-01 21:13:20 +00001103 ADAPTERS="adapter-.*"
1104 wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for adapters to start" $ADAPTERS
1105 if [ "$WITH_TIMINGS" == "yes" ]; then
1106 printtime $(expr $(date +%s) - $STIME)
1107 fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001108fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001109
Test User7d866122019-07-09 17:52:35 +00001110if [ $WITH_BBSIM == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001111 STIME=$(date +%s)
Test User7d866122019-07-09 17:52:35 +00001112 echo -e "Verify BBSIM $PLUG"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001113 bspin - "Verify BBSIM Installed"
Test User7d866122019-07-09 17:52:35 +00001114 if [ $(helm list --deployed --short --namespace voltha "^bbsim\$" | wc -l) -ne 1 ]; then
1115 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001116 helm_install - voltha bbsim $VOLTHA_BBSIM_CHART $VOLTHA_BBSIM_CHART_VERSION "Install BBSIM"
Test User7d866122019-07-09 17:52:35 +00001117 else
1118 espin - $VERIFIED
1119 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001120 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for BBSIM to start" "bbsim-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001121 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001122 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001123 fi
Test User7d866122019-07-09 17:52:35 +00001124fi
1125
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001126if [ $WITH_RADIUS == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001127 STIME=$(date +%s)
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001128 echo -e "Verify RADIUS $LOCK"
1129 bspin - "Verify RADIUS Installed"
1130 if [ $(helm list --deployed --short --namespace voltha "^radius\$" | wc -l) -ne 1 ]; then
1131 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001132 helm_install - voltha radius onf/freeradius latest "Install RADIUS"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001133 else
1134 espin - $VERIFIED
1135 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001136 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for RADIUS to start" "radius-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001137 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001138 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001139 fi
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001140fi
1141
David Bainbridgee87067b2019-08-12 22:00:12 +00001142STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001143bspin - "Forward VOLTHA API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001144kill_port_forward voltha-api
1145port_forward voltha voltha-api $VOLTHA_API_PORT 55555
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001146espin - $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +00001147bspin - "Forward VOLTHA ETCD port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001148kill_port_forward voltha-etcd-cluster-client
1149port_forward voltha voltha-etcd-cluster-client $VOLTHA_ETCD_PORT 2379
David Bainbridgeac7f8072019-08-01 22:15:33 +00001150espin - $VERIFIED
David Bainbridgee87067b2019-08-12 22:00:12 +00001151if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001152 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001153fi
Test User3d7ad8e2019-07-03 06:15:44 +00001154
David Bainbridgeb270c202019-07-26 01:44:42 +00001155if [ $WITH_ONOS == "yes" -a $WITH_RADIUS == "yes" ]; then
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001156 bspin "Configure ONOS RADIUS Connection $GEAR"
Andy Bavier658ebef2019-11-05 17:22:56 -07001157 (set -x; cat onos-files/onos-aaa.json | sed -e "s/:RADIUS_IP:/$(kubectl -n voltha get service/radius -o jsonpath={.spec.clusterIP})/g" | curl --fail -sSL --user karaf:karaf -X POST http://127.0.0.1:$ONOS_API_PORT/onos/v1/network/configuration/apps/org.opencord.aaa -H Content-type:application/json -d@- >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001158 espin $VERIFIED
1159fi
1160
David Bainbridge99ac7a22019-08-31 02:26:43 +00001161if [ "$WITH_CHAOS" == "yes" ]; then
1162 STIME=$(date +%s)
1163 echo -e "Verify kube-monkey $LOCK"
1164 bspin - "Verify kube-monkey Installed"
1165 if [ $(helm list --deployed --short --namespace kube-monkey "^monkey\$" | wc -l) -ne 1 ]; then
1166 espin - $NOT_VERIFIED
1167 helm_install - kube-monkey monkey ./kube-monkey/helm/kubemonkey latest "Install Chaos Monkey"
1168 else
1169 espin - $VERIFIED
1170 fi
1171 wait_for_pods - "kube-monkey" 1 "includes" -1 "Waiting for Chaos to start" "monkey-.*"
1172 if [ "$WITH_TIMINGS" == "yes" ]; then
1173 printtime $(expr $(date +%s) - $STIME)
1174 fi
1175fi
1176
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001177bspin "Create voltctl configuration file"
Test User3d7ad8e2019-07-03 06:15:44 +00001178(set -x; mkdir -p $HOME/.volt >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge0774b232019-08-02 06:37:19 +00001179(set -x; voltctl -a v2 -s localhost:$VOLTHA_API_PORT config > $HOME/.volt/config-$NAME 2>>$LOG) >>$LOG 2>&1
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001180espin $VERIFIED
Test User08ebbd92019-07-03 17:15:39 +00001181
David Bainbridge0774b232019-08-02 06:37:19 +00001182if [ ! -f "$NAME-env.sh" ]; then
1183 touch $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001184fi
1185
David Bainbridge596f30d2019-07-30 17:07:59 +00001186for O in $ALL_OPTIONS; do
1187 VAL=$(eval echo \$$O)
David Bainbridge0774b232019-08-02 06:37:19 +00001188 if [ ! -z "$VAL" -a $(grep -c "^export $O=" $NAME-env.sh) -eq 0 ]; then
1189 echo "export $O=\"$(eval echo \$$O)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001190 fi
1191done
1192
David Bainbridge0774b232019-08-02 06:37:19 +00001193if [ $DEPLOY_K8S == "yes" -a $(grep -c "^export KUBECONFIG=" $NAME-env.sh) -eq 0 ]; then
1194 echo "export KUBECONFIG=\"$(./bin/kind get kubeconfig-path --name=voltha-$NAME)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001195fi
1196
David Bainbridge0774b232019-08-02 06:37:19 +00001197if [ $(grep -c "^export VOLTCONFIG=" $NAME-env.sh) -eq 0 ]; then
1198 echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001199fi
1200
David Bainbridge0774b232019-08-02 06:37:19 +00001201if [ $(grep -c "^export PATH=" $NAME-env.sh) -eq 0 ]; then
1202 echo "export PATH=\"$GOPATH/bin:\$PATH\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001203fi
1204
Test User7d866122019-07-09 17:52:35 +00001205echo ""
Test User08ebbd92019-07-03 17:15:39 +00001206echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
1207echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
1208echo "tools required by VOLTHA in your command path. " | tee -a $LOG
1209echo "" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001210echo -en $BOLD
Test Userba1e7e72019-07-10 22:27:54 +00001211if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +00001212 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001213fi
David Bainbridge0774b232019-08-02 06:37:19 +00001214echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001215echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001216echo -en $NORMAL
Test User08ebbd92019-07-03 17:15:39 +00001217echo "" | tee -a $LOG
1218echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
1219
David Bainbridge712afb82019-08-14 19:55:58 +00001220if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridgef858a022019-08-14 21:25:11 +00001221 echo -e "$CLOCK ${BOLD}TOTAL: $(duration $(expr $(date +%s) - $TOTAL_START_TIME))${NORMAL}"
David Bainbridge712afb82019-08-14 19:55:58 +00001222fi