blob: e5148f0debb10d7dffcd0b39df01f6de690d48d8 [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
Test User08ebbd92019-07-03 17:15:39 +000033VOLTCTL_VERSION=${VOLTCTL_VERSION:-0.0.5-dev}
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -080034KIND_VERSION=${KIND_VERSION:-v0.5.1}
Test User08ebbd92019-07-03 17:15:39 +000035_VOLTCTL_VERSION=$(echo $VOLTCTL_VERSION | sed -e 's/-/_/g')
36
David Bainbridge38dc1e82019-08-12 15:18:45 +000037BLACK=
38RED=
39GREEN=
40YELLOW=
41BLUE=
42MAGENTA=
43CYAN=
44WHITE=
45BOLD=
46NORMAL=
47ERROR=
48CEOL=
49CNORM=
50CIVIS=
51if [ $FANCY -eq 1 ]; then
52 BLACK=$(tput setaf 0)
53 RED=$(tput setaf 1)
54 GREEN=$(tput setaf 2)
55 YELLOW=$(tput setaf 3)
56 BLUE=$(tput setaf 4)
57 MAGENTA=$(tput setaf 5)
58 CYAN=$(tput setaf 6)
59 WHITE=$(tput setaf 7)
60 BOLD=$(tput bold)
61 NORMAL=$(tput sgr0)
62 ERROR="\xe2\x9c\x97\x20"
63 CEOL=$(tput el)
64 CNORM=$(tput cnorm)
65 CIVIS=$(tput civis)
66fi
Test User7d866122019-07-09 17:52:35 +000067
Test User3d7ad8e2019-07-03 06:15:44 +000068TYPE=${TYPE:-minimal}
David Bainbridge0774b232019-08-02 06:37:19 +000069NAME=${NAME:-$TYPE}
David Bainbridgee87067b2019-08-12 22:00:12 +000070WITH_TIMINGS=${WITH_TIMINGS:-no}
Test User7d866122019-07-09 17:52:35 +000071WITH_BBSIM=${WITH_BBSIM:-no}
David Bainbridge5b7b96b2019-07-25 20:29:13 +000072WITH_RADIUS=${WITH_RADIUS:-no}
David Bainbridgeb270c202019-07-26 01:44:42 +000073WITH_ONOS=${WITH_ONOS:-yes}
David Bainbridge99ac7a22019-08-31 02:26:43 +000074WITH_CHAOS=${WITH_CHAOS:-no}
David Bainbridge46505fb2019-10-01 21:13:20 +000075WITH_ADAPTERS=${WITH_ADAPTERS:-yes}
76WITH_SIM_ADAPTERS=${WITH_SIM_ADAPTERS:-yes}
77WITH_OPEN_ADAPTERS=${WITH_OPEN_ADAPTERS:-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}
97
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 Bainbridge2a0b8a42019-08-16 17:39:29 +0000147 "
David Bainbridge5b7b96b2019-07-25 20:29:13 +0000148
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000149ALL_OPTIONS="\
150 NAME \
151 TYPE \
152 $ALL_YES_NO \
153 VOLTHA_LOG_LEVEL \
154 VOLTHA_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000155 VOLTHA_CHART_VERSION \
156 VOLTHA_BBSIM_CHART \
157 VOLTHA_BBSIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000158 VOLTHA_ADAPTER_SIM_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000159 VOLTHA_ADAPTER_SIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000160 VOLTHA_ADAPTER_OPEN_OLT_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000161 VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000162 VOLTHA_ADAPTER_OPEN_ONU_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000163 VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000164 ONOS_API_PORT \
165 ONOS_SSH_PORT \
166 VOLTHA_API_PORT \
167 VOLTHA_SSH_PORT \
168 VOLTHA_ETCD_PORT \
169 "
David Bainbridge01294952019-07-30 19:33:45 +0000170
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000171# Iterate over yes/no configuration options and validate
172for VAR in $ALL_YES_NO; do
173 eval $VAR=$(verify_yes_no $VAR)
174 if [ "$(eval echo \$$VAR)" == "INVALID" ]; then
175 exit 1;
176 fi
177done
David Bainbridgeb270c202019-07-26 01:44:42 +0000178
David Bainbridge0774b232019-08-02 06:37:19 +0000179mkdir -p .voltha
180touch .voltha/ports
181HAVE=$(grep $NAME .voltha/ports)
182if [ "$HAVE X" == " X" ]; then
183 # Find free port prefix
184 START=81
185 while true; do
186 if [ $(grep -c $START .voltha/ports) -eq 0 ]; then
187 break
188 fi
189 START=$(expr $START + 1)
190 done
191 DELTA=$(expr $START - 81)
David Bainbridgea2595422019-10-22 03:54:28 +0000192 ONOS_API_PORT=${ONOS_API_PORT:-${START}81}
193 ONOS_SSH_PORT=${ONOS_SSH_PORT:-${START}01}
194 VOLTHA_API_PORT=${VOLTHA_API_PORT:-5$(expr 55 + $DELTA)55}
195 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(expr 50 + $DELTA)22}
196 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(expr 23 + $DELTA)79}
Test User01ed0642019-07-03 20:17:06 +0000197else
David Bainbridge0774b232019-08-02 06:37:19 +0000198 VALUES=$(echo $HAVE | sed -e 's/\s//g' | cut -d= -f2)
David Bainbridgea2595422019-10-22 03:54:28 +0000199 ONOS_API_PORT=${ONOS_API_PORT:-$(echo $VALUES | cut -d, -f1)}
200 ONOS_SSH_PORT=${ONOS_SSH_PORT:-$(echo $VALUES | cut -d, -f2)}
201 VOLTHA_API_PORT=${VOLTHA_API_PORT:-$(echo $VALUES | cut -d, -f3)}
202 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(echo $VALUES | cut -d, -f4)}
203 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(echo $VALUES | cut -d, -f5)}
Test User01ed0642019-07-03 20:17:06 +0000204fi
205
David Bainbridge0774b232019-08-02 06:37:19 +0000206PORTTMP=$(mktemp -u)
207cat .voltha/ports | grep -v $NAME > $PORTTMP
208echo "$NAME=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $PORTTMP
209cp $PORTTMP .voltha/ports
210rm -f $PORTTMP
211
David Bainbridge27790d62019-08-13 22:43:19 +0000212export ONOS_API_PORT ONOS_SSH_PORT
David Bainbridge01294952019-07-30 19:33:45 +0000213
Test Userd87942b2019-07-03 07:20:24 +0000214IDX=1
David Bainbridgee87067b2019-08-12 22:00:12 +0000215CLOCK="TIME:"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000216SPIN_PARTS=
217NOT_VERIFIED=
David Bainbridgef858a022019-08-14 21:25:11 +0000218THEX=
219BUILD=
220CROSS=
221ENTER=
David Bainbridge38dc1e82019-08-12 15:18:45 +0000222VERIFIED=
223HELM=
224OLD_KEY=
225BIRD=
226HIGH_VOLTAGE=
227PLUG=
228RESTART=
229FORWARD=
230INSTALL=
231STOP=
232GO=
233DOWNLOAD=
234GEAR=
235NO_ENTRY=
236LOCK=
237
238if [ $FANCY -eq 1 ]; then
239 SPIN_PARTS="\
240 \xe2\xa2\x8e\xe2\xa1\xb0 \
241 \xe2\xa2\x8e\xe2\xa1\xa1 \
242 \xe2\xa2\x8e\xe2\xa1\x91 \
243 \xe2\xa2\x8e\xe2\xa0\xb1 \
244 \xe2\xa0\x8e\xe2\xa1\xb1 \
245 \xe2\xa2\x8a\xe2\xa1\xb1 \
246 \xe2\xa2\x8c\xe2\xa1\xb1 \
247 \xe2\xa2\x86\xe2\xa1\xb1 \
248 "
David Bainbridgee87067b2019-08-12 22:00:12 +0000249 CLOCK="\xe2\x8f\xb1"
David Bainbridgef858a022019-08-14 21:25:11 +0000250 THEX="${RED}${BOLD}\xe2\x9c\x97\x20${NORMAL}"
251 ENTER="${YELLOW}${BOLD}\xe2\x8e\x86${NORMAL}"
252 CROSS="${YELLOW}${BOLD}\xe2\x9c\x9a${NORMAL}"
253 BUILD="${YELLOW}${BOLD}\xf0\x9f\x8f\x97${NORMAL}"
254 NOT_VERIFIED="$BUILD"
255 VERIFIED="${GREEN}${BOLD}\xe2\x9c\x93\x20${NORMAL}"
256 HELM="${BLUE}${BOLD}\xE2\x8E\x88${NORMAL}"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000257 OLD_KEY="\xF0\x9F\x97\x9D"
258 BIRD="\xF0\x9F\x90\xA6"
259 HIGH_VOLTAGE="\xE2\x9A\xA1"
260 PLUG="\xF0\x9F\xa7\xa9"
261 RESTART="\xf0\x9f\x94\x84"
262 FORWARD="\xE2\x87\xA8"
263 INSTALL="\xF0\x9F\x8F\x97"
264 STOP="\xf0\x9f\x9b\x91"
265 GO="\xf0\x9f\x9a\x80"
266 DOWNLOAD="\xf0\x9f\x93\xa5"
267 GEAR="\xe2\x9a\x99"
268 NO_ENTRY="\xe2\x9b\x94"
269 LOCK="\xf0\x9f\x94\x92"
270fi
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700271
David Bainbridge712afb82019-08-14 19:55:58 +0000272duration() {
David Bainbridgee87067b2019-08-12 22:00:12 +0000273 local h=$(expr $1 / 3600)
274 local m=$(expr $1 % 3600 / 60)
275 local s=$(expr $1 % 60)
276 local t=""
277
278 if [ $h -gt 0 ]; then
279 t="$t${h}h"
280 fi
281 if [ $m -gt 0 ]; then
282 t="$t${m}m"
283 fi
David Bainbridge712afb82019-08-14 19:55:58 +0000284 echo "$t${s}s"
285}
286
287printtime() {
288 local INDENT=
289 if [ "$1" == "-" ]; then
290 INDENT=" "
291 shift
292 fi
293 echo -e "$INDENT $CLOCK $(duration $1)"
David Bainbridgee87067b2019-08-12 22:00:12 +0000294}
295
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700296bspin() {
Test Userd87942b2019-07-03 07:20:24 +0000297 IDX=1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700298 local INDENT=
299 if [ "$1" == "-" ]; then
300 INDENT=" "
301 shift
302 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000303 if [ $FANCY -eq 0 ]; then
304 LINE=$(echo $* | sed -e 's/[\s+-]//g')
305 if [ "$LINE X" == " X" ]; then
306 return
307 fi
308 echo -e "$CIVIS$INDENT$*"
309 else
310 echo -en "$CIVIS$INDENT $*"
311 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700312}
313
314sspin() {
315 local INDENT=
316 if [ "$1" == "-" ]; then
317 INDENT=" "
318 shift
319 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000320 if [ $FANCY -eq 0 ]; then
321 LINE=$(echo $* | sed -e 's/[\s+-]//g')
322 if [ "$LINE X" == " X" ]; then
323 return
324 fi
325 echo -e "$INDENT$*"
326 else
327 C=$(echo $SPIN_PARTS | cut '-d ' -f $IDX)
328 echo -en "\r$INDENT$C $*"
329 IDX=$(expr $IDX + 1)
330 if [ $IDX -gt 8 ]; then
331 IDX=1
332 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700333 fi
334}
335
336espin() {
337 local INDENT=
338 if [ "$1" == "-" ]; then
339 INDENT=" "
340 shift
341 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000342 if [ $FANCY -eq 0 ]; then
343 LINE=$(echo $* | sed -e 's/[\s+-]//g')
344 if [ "$LINE X" == " X" ]; then
345 return
346 fi
347 echo -e "$INDENT$*"
348 else
349 echo -e "\r$INDENT$*$CNORM"
350 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700351}
352
David Bainbridgeac7f8072019-08-01 22:15:33 +0000353if [ "$1" == "get" -a "$2" == "voltconfig" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000354 echo "$HOME/.volt/config-$NAME"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000355 exit
356fi
357
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700358if [ $# -ne 1 -o $(echo ":up:down:dump:" | grep -c ":$1:") -ne 1 ]; then
David Bainbridgeac7f8072019-08-01 22:15:33 +0000359 >&2 echo "What wouild you like to do today:"
360 >&2 echo " up - bring up voltha"
361 >&2 echo " down - tear down voltha"
362 >&2 echo " dump - create a debug dump of running system"
363 exit 1
364fi
365
David Bainbridge4f1b5562019-08-19 04:46:52 +0000366push_onos_config() {
367 local MSG=$1
368 local RESOURCE=$2
369 local DATA=$3
370
371 bspin - "$MSG $GEAR"
372 while true; do
373 (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
374 if [ $? -eq 0 ]; then
375 break
376 fi
377 sleep .2
378 sspin -
379 done
380 espin - $VERIFIED
381}
382
383override_onos_app() {
384 local APP=$1
385 local NAME=$(basename $APP | sed -e 's/^[0-9][0-9]*-//g' -e 's/-.*$//g')
386 while true; do
387 sspin -
388 # Attempt to delete old version (if it exists)
389 (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
390 sspin -
391 if [ $? -ne 0 ]; then
392 continue
393 fi
394 (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
395 if [ $? -eq 0 ]; then
396 break
397 fi
398 sleep .2
399 done
400}
401
402activate_onos_app() {
403 local MSG="$1"
404 local APP=$2
405
406 bspin - "$MSG $GO"
407 while true; do
408 sspin -
409 (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
410 if [ $? -eq 0 ]; then
411 break
412 fi
413 sleep .2
414 done
415 espin - "$VERIFIED"
416}
417
418count_pods() {
419 local NAMESPACE=$1; shift
420 if [ "$NAMESPACE" == "all-namespaces" ]; then
421 NAMESPACE="--all-namespaces"
422 else
423 NAMESPACE="-n $NAMESPACE"
424 fi
425 echo "$NAMESPACE" > /tmp/t
426 local STATES=$1; shift
427 echo "$STATES" >> /tmp/t
428 local PODS=$(kubectl get $NAMESPACE pod -o go-template="{{range .items}}{{.metadata.name}}/{{.status.phase}}/_{{range .status.containerStatuses}}{{.ready}}_{{end}} {{end}}")
429 local COUNT=0
430 local PATTERNS="$*"
431 for POD in $PODS; do
432 local NAME=$(echo $POD | cut -d/ -f 1)
433 local STATE=$(echo $POD | cut -d/ -f 2)
434 local CONTAINERS=$(echo $POD | cut -d/ -f 3 | sed -e 's/_/ /g')
435 if [ "$STATES" == "*" -o $(echo "$STATES" | grep -c ":$STATE:") -ne 0 ]; then
436 echo "IN WITH $POD" >> /tmp/t
437 local TOTAL=$(echo $CONTAINERS | wc -w)
438 local FOUND=$(echo $CONTAINERS | grep -o true | wc -l)
439 if [ $TOTAL -eq $FOUND ]; then
440 for PATTERN in $PATTERNS; do
441 echo "TEST $PATTERN AGAINST $NAME" >> /tmp/t
442 if [[ $NAME =~ $PATTERN ]]; then
443 echo "COUNT $NAME" >> /tmp/t
444 COUNT=$(expr $COUNT + 1)
445 break
446 fi
447 done
448 fi
449 fi
450 done
451 echo $COUNT >> /tmp/t
452 echo $COUNT
453}
454
455wait_for_pods() {
456 local INDENT=
457 if [ "$1" == "-" ]; then
458 INDENT=$1; shift
459 fi
460 local NAMESPACE=$1; shift
461 local EXPECT=$1; shift
462 local TYPE=$1; shift
463 local RETRY=$1; shift
464 local MESSAGE=$1; shift
465 local PATTERNS=$*
David Bainbridge99ac7a22019-08-31 02:26:43 +0000466 local STATES=":Running:"
467 if [ "$TYPE" == "not" ]; then
468 STATES="*"
469 fi
470 local HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000471 local ALL=$HAVE
472 if [ "$TYPE" == "only" ]; then
473 ALL=$(count_pods "all-namespaces" "*" ".*")
474 fi
475 COUNT=$(expr 300 / 15)
476 bspin $INDENT $MESSAGE
477 sspin $INDENT
478 if [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; then
479 while [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; do
480 sspin $INDENT
481 COUNT=$(expr $COUNT - 1)
482 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000483 HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000484 ALL=$HAVE
485 if [ "$TYPE" == "only" ]; then
486 ALL=$(count_pods "all-namespaces" "*" ".*")
487 fi
488 COUNT=$(expr 300 / 15)
489 fi
490 sleep .15
491 done
492 fi
493 espin $INDENT $VERIFIED
494 if [ $HAVE -ne $EXPECT ]; then
495 return 1
496 fi
497 return 0
498}
499
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800500port_forward() {
501 local NS=$1
502 local SVC=$2
503 local FROM_PORT=$3
504 local TO_PORT=$4
505 local TAG=$SVC-$NAME
506
507 (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
508}
509
510kill_port_forward() {
511 local TAG=$1-$NAME
512 local PIDS=$(ps e -ww | grep "_TAG=$TAG" | grep -v grep | awk '{print $1}')
513 local KIDS=
514 if [ ! -z "$PIDS" ]; then
515 for P in $PIDS; do
516 if [ $(ps -o ppid $P | tail -n +2) -eq 1 ]; then
517 (set -x; kill -9 $P >>$LOG 2>&1) >>$LOG 2>&1
518 else
519 KIDS="$KIDS $P"
520 fi
521 done
522 if [ ! -z "$KIDS" ]; then
523 (set -x; kill -9 $KIDS >>$LOG 2>&1) >>$LOG 2>&1
524 fi
525 fi
526}
527
David Bainbridgeac7f8072019-08-01 22:15:33 +0000528if [ "$1" == "down" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000529 echo "Tearing down voltha cluster $NAME"
530 LOG="down-$NAME.log"
531 echo $(date -u +"%Y%m%dT%H%M%SZ") >$LOG
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800532 bspin "Remove port-forwards: onos-ui-$NAME"
533 kill_port_forward onos-ui
534 sspin "Remove port-forwards: onos-ssh-$NAME$CEOL"
535 kill_port_forward onos-ssh
536 sspin "Remove port-forwards: voltha-api-$NAME$CEOL"
537 kill_port_forward voltha-api
538 sspin "Remove port-forwards: voltha-ssh-$NAME$CEOL"
539 kill_port_forward voltha-ssh
540 sspin "Remove port-forwards: voltha-etcd-$NAME$CEOL"
541 kill_port_forward voltha-etcd-cluster-client
542 espin "$VERIFIED Remove port-forwards$CEOL"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000543 if [ $DEPLOY_K8S == "yes" ]; then
544 if [ -x ./bin/kind ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000545 bspin "Delete Kubernetes Kind Cluster"
546 (set -x; ./bin/kind delete cluster --name voltha-$NAME >>$LOG 2>&1) >>$LOG 2>&1
547 espin $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +0000548 else
David Bainbridge0774b232019-08-02 06:37:19 +0000549 espin "$NO_ENTRY Delete Kubernetes Kind Cluster: kind command not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000550 fi
551 else
552 EXISTS=$(helm list -q)
553 EXPECT="etcd-operator onos open-olt open-onu sim voltha bbsim radius"
David Bainbridge0774b232019-08-02 06:37:19 +0000554 bspin "Remove Helm Deployments"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000555 for i in $EXISTS; do
556 if [ $(echo $EXPECT | grep -c $i) -eq 1 ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000557 sspin "Remove Helm Deployments: $i$CEOL"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800558 (set -x; ./bin/helm delete --no-hooks --purge $i >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000559 fi
560 done
David Bainbridge0774b232019-08-02 06:37:19 +0000561 espin "$VERIFIED Remove Helm Deployments$CEOL"
David Bainbridge4f1b5562019-08-19 04:46:52 +0000562 if [ "$WAIT_ON_DOWN" == "yes" ]; then
563 # There should only be 13 or 15 PODs in the kube-system name
564 # space and no other PODs
David Bainbridge4f1b5562019-08-19 04:46:52 +0000565 PODS="coredns-.* \
566 etcd-voltha-$NAME-control-plane \
567 kindnet-.* \
568 kube-apiserver-voltha-$NAME-control-plane \
569 kube-controller-manager-voltha-$NAME-control-plane \
570 kube-proxy-.* \
571 kube-scheduler-voltha-$NAME-control-plane \
572 tiller-deploy-.*"
573 EXPECT=$(test "$TYPE" == "minimal" && echo "13" || echo "15")
David Bainbridge99ac7a22019-08-31 02:26:43 +0000574 PODS="adapter-.* \
575 bbsim.* \
576 etcd-operator.* \
577 radius.* \
578 voltha-.*"
579 EXPECT=0
580
581 wait_for_pods "voltha" $EXPECT "not" -1 "Waiting for VOLTHA PODs to terminate" $PODS
David Bainbridge4f1b5562019-08-19 04:46:52 +0000582 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000583 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700584 exit
David Bainbridgeac7f8072019-08-01 22:15:33 +0000585fi
586
587if [ "$1" == "dump" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000588 LOG="dump-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000589 TS=$(date -u +"%Y%m%dT%H%M%SZ")
David Bainbridge76514a02019-10-08 01:50:35 +0000590 if [ ! -z "$DUMP_FROM" ]; then
591 TS=$(echo $DUMP_FROM | sed -e 's/[:-]//g')
592 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000593 WORK=$(mktemp -u -d)
David Bainbridge0774b232019-08-02 06:37:19 +0000594 DATA=$WORK/voltha-debug-dump-$NAME-$TS
David Bainbridgeac7f8072019-08-01 22:15:33 +0000595 mkdir -p $DATA
596 echo $TS > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000597 echo -e "Capturing debug dump to voltha-debug-dump-$NAME-$TS.tgz"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000598 bspin - "Copy install log"
David Bainbridge0774b232019-08-02 06:37:19 +0000599 if [ -f install-$NAME.log ]; then
600 (set -x; cp install-$NAME.log $DATA/install-$NAME.log) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000601 espin - $VERIFIED
602 else
David Bainbridge0774b232019-08-02 06:37:19 +0000603 espin - "$NO_ENTRY Copy install log: install-$NAME.log not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000604 fi
605 bspin - "Dumping Kubernetes PODs"
606 (set -x; kubectl get --all-namespaces pods >> $DATA/all-pods.txt 2>&1) >>$LOG 2>&1
607 espin - $VERIFIED
608 bspin - "Dumping Kubernetes SERVICEs"
609 (set -x; kubectl get --all-namespaces svc >> $DATA/all-services.txt 2>&1) >>$LOG 2>&1
610 espin - $VERIFIED
611 bspin - "Dumping Kubernetes EVENTs"
612 (set -x; kubectl get --all-namespaces events >> $DATA/all-events.txt 2>&1) >>$LOG 2>&1
613 espin - $VERIFIED
614 bspin - "Dumping VOLTHA POD details"
Matteo Scandolodcd29f52019-10-07 15:42:42 -0700615 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 +0000616 SINCE=
617 if [ ! -z "$DUMP_FROM" ]; then
618 SINCE="--since-time=$DUMP_FROM"
619 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000620 for POD in $PODS; do
David Bainbridge1f0655a2019-10-01 22:08:48 +0000621 NS=$(echo $POD | cut -d: -f1)
622 POD=$(echo $POD | cut -d: -f2)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000623 sspin - "Dumping VOLTHA POD details: $POD$CEOL"
624 mkdir -p $DATA/$POD
David Bainbridge1f0655a2019-10-01 22:08:48 +0000625 (set -x; kubectl describe -n $NS $POD >> $DATA/$POD/describe.txt 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000626 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000627 (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 +0000628 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000629 (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 +0000630 sspin - "Dumping VOLTHA POD details: $POD"
631 done
632 espin - "$VERIFIED Dumping VOLTHA POD details$CEOL"
633 bspin - "Dumping ETCD"
634 if [ "$(which etcdctl) X" != " X" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000635 (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 +0000636 espin - $VERIFIED
637 else
638 espin - "$NO_ENTRY Dumping ETCD: etcdctl command not available"
639 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000640 bspin - "Creating compressed TAR: voltha-debug-dump-$NAME-$TS.tgz"
641 (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 +0000642 espin - $VERIFIED
643 bspin - "Cleanup"
644 (set -x; rm -rf $WORK) >>$LOG 2>&1
645 espin - $VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000646 bspin - "$(ls -l voltha-debug-dump-$NAME-$TS.tgz)"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000647 espin - $VERIFIED
648 exit
649fi
650
David Bainbridge0774b232019-08-02 06:37:19 +0000651LOG="install-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000652date > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000653echo "PORTS=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000654
655# Output install options to log
656echo "OPTIONS" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000657for O in $ALL_OPTIONS; do
658 VAL=$(eval echo \$$O)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000659 if [ ! -z "$VAL" ]; then
660 printf " %-30s = %s\n" $O $VAL >> $LOG
661 fi
662done
663
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700664helm_install() {
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700665 local INDENT=
666 if [ "$1" == "-" ]; then
667 INDENT=$1; shift
668 fi
669 local NAMESPACE=$1; shift
David Bainbridge0774b232019-08-02 06:37:19 +0000670 local INAME=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700671 local CHART=$1; shift
David Bainbridge90fd8e32019-08-21 23:32:47 +0000672 local CHART_VERSION=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700673 local MESSAGE=$*
674
David Bainbridge90fd8e32019-08-21 23:32:47 +0000675 if [ "$CHART_VERSION X" != " X" -a "$CHART_VERSION" != "latest" ]; then
676 CHART_VERSION="--version $CHART_VERSION"
677 else
678 CHART_VERSION=
679 fi
680
David Bainbridge99ac7a22019-08-31 02:26:43 +0000681 local CHART_ARGS=
682 if [ -r "${INAME}-values.yaml" ]; then
683 CHART_ARGS="-f ${INAME}-values.yaml"
684 fi
685
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700686 COUNT=$(expr 300 / 15)
687 bspin $INDENT $MESSAGE
David Bainbridge99ac7a22019-08-31 02:26:43 +0000688 (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 -0700689 SUCCESS=$?
690 while [ $SUCCESS -ne 0 ]; do
691 sspin $INDENT
692 COUNT=$(expr $COUNT - 1)
693 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000694 (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 -0700695 COUNT=$(expr 300 / 15)
696 fi
697 sleep .15
698 done
699 espin $INDENT $VERIFIED
700}
701
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700702echo "INSTALL TYPE: $TYPE" >> $LOG
703
704bspin "Verify GOPATH"
705export GOPATH=$(pwd)
Test User3d7ad8e2019-07-03 06:15:44 +0000706mkdir -p $GOPATH/bin
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700707espin $VERIFIED
708
David Bainbridgee87067b2019-08-12 22:00:12 +0000709STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700710if [ "$INSTALL_KUBECTL" == "no" ]; then
711 bspin "Skip kubectl install"
712 espin $NO_ENTRY
Test Userc13bdc92019-07-03 20:57:49 +0000713else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700714 bspin "Verify kubectl $HELM"
715 if [ -x $GOPATH/bin/kubectl ]; then
716 espin $VERIFIED
717 else
718 espin $NOT_VERIFIED
719 bspin - "Download and install Kubernetes/kubectl $DOWNLOAD"
720 (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
721 (set -x; chmod 755 $GOPATH/bin/kubectl >>$LOG 2>&1) >>$LOG 2>&1
722 espin - $VERIFIED
723 fi
Test Userc13bdc92019-07-03 20:57:49 +0000724fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000725if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000726 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000727fi
Test Userc13bdc92019-07-03 20:57:49 +0000728
David Bainbridgee87067b2019-08-12 22:00:12 +0000729STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700730if [ "$DEPLOY_K8S" == "no" ]; then
731 bspin "Skip Kubernetes/Kind Deployment"
732 espin $NO_ENTRY
733else
Test Userba1e7e72019-07-10 22:27:54 +0000734 bspin "Verify Kubernetes/Kind $HELM"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800735 IS_INSTALLED=0
736 OP_TYPE="install"
Test Userba1e7e72019-07-10 22:27:54 +0000737 if [ -x $GOPATH/bin/kind ]; then
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800738 OP_TYPE="upgrade"
739 if [ $($GOPATH/bin/kind --version | grep -c $KIND_VERSION) -eq 1 ]; then
740 IS_INSTALLED=1
741 espin $VERIFIED
742 fi
743 fi
744 if [ $IS_INSTALLED -eq 0 ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000745 espin $NOT_VERIFIED
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800746 bspin - "Download and $OP_TYPE Kubernetes/kind $DOWNLOAD"
David Bainbridge9e2a6662019-07-11 17:07:57 +0000747 (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 +0000748 (set -x; chmod 755 $GOPATH/bin/kind >>$LOG 2>&1) >>$LOG 2>&1
749 espin - $VERIFIED
750 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700751fi
752
David Bainbridgee87067b2019-08-12 22:00:12 +0000753if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000754 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000755fi
756
757STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700758if [ "$INSTALL_HELM" == "no" ]; then
759 bspin "Skip Helm Install"
760 espin $NO_ENTRY
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700761else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700762 bspin "Verify Helm $HELM"
763 if [ -x $GOPATH/bin/helm ]; then
764 espin $VERIFIED
765 else
766 espin $NOT_VERIFIED
767 bspin - "Download and install Helm $DOWNLOAD"
David Bainbridgec6a6eb62019-10-18 22:50:07 +0000768 (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 -0700769 espin - $VERIFIED
770 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700771fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800772
David Bainbridgee87067b2019-08-12 22:00:12 +0000773if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000774 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000775fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700776
David Bainbridgee87067b2019-08-12 22:00:12 +0000777STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000778bspin "Verify voltctl $HIGH_VOLTAGE"
Test User3d7ad8e2019-07-03 06:15:44 +0000779if [ -x $GOPATH/bin/voltctl ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700780 espin $VERIFIED
781else
782 espin $NOT_VERIFIED
David Bainbridge99ac7a22019-08-31 02:26:43 +0000783 bspin - "Download and install voltctl $DOWNLOAD"
Test Userba1e7e72019-07-10 22:27:54 +0000784 (set -x; curl -o $GOPATH/bin/voltctl -sSL https://github.com/ciena/voltctl/releases/download/$VOLTCTL_VERSION/voltctl-$_VOLTCTL_VERSION-$HOSTOS-$HOSTARCH >>$LOG 2>&1) >>$LOG 2>&1
Test User08ebbd92019-07-03 17:15:39 +0000785 (set -x; chmod 755 $GOPATH/bin/voltctl >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700786 espin - $VERIFIED
787fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000788if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000789 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000790fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700791
792bspin "Verify command PATH"
Test Userba1e7e72019-07-10 22:27:54 +0000793export PATH=$GOPATH/bin:$PATH
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700794espin $VERIFIED
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700795
David Bainbridgee87067b2019-08-12 22:00:12 +0000796STIME=$(date +%s)
Test Userba1e7e72019-07-10 22:27:54 +0000797if [ "$DEPLOY_K8S" == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000798 HAVE=$(kind get clusters | grep -c voltha-$NAME)
Test Userba1e7e72019-07-10 22:27:54 +0000799 bspin "Verify Kubernetes/Kind Cluster"
800 sspin
801 if [ $HAVE -eq 0 ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000802 espin $NOT_VERIFIED
803 bspin - "Verify cluster configuration"
David Bainbridge0774b232019-08-02 06:37:19 +0000804 if [ ! -r ./$NAME-cluster.cfg ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000805 espin - $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000806 bspin - "Download cluster configuration: $TYPE-cluster.cfg to $NAME-cluster.cfg $DOWNLOAD"
807 (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 -0700808 espin - $VERIFIED
809 else
810 espin - $VERIFIED
811 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000812 kind create cluster --name voltha-$NAME --config $NAME-cluster.cfg
David Bainbridge491b1bd2019-07-11 17:53:11 +0000813 else
814 espin $VERIFIED
Test Userba1e7e72019-07-10 22:27:54 +0000815 fi
816
David Bainbridge0774b232019-08-02 06:37:19 +0000817 export KUBECONFIG="$(kind get kubeconfig-path --name="voltha-$NAME")"
Test Userba1e7e72019-07-10 22:27:54 +0000818 P="coredns-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000819 etcd-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000820 kindnet-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000821 kube-apiserver-voltha-$NAME-control-plane \
822 kube-controller-manager-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000823 kube-proxy-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000824 kube-scheduler-voltha-$NAME-control-plane"
Test Userba1e7e72019-07-10 22:27:54 +0000825
826 EXPECT=$(test "$TYPE" == "minimal" && echo "12" || echo "14")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000827 wait_for_pods - "kube-system" $EXPECT "includes" -1 "Waiting for system PODs to start" $P
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700828fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000829if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000830 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000831fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700832
David Bainbridgee87067b2019-08-12 22:00:12 +0000833STIME=$(date +%s)
David Bainbridge4c6289c2019-09-03 21:11:32 +0000834COUNT=$(count_pods "kube-system" ":Running:" "tiller-deploy-.*")
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700835bspin "Verify Helm"
Test Userba1e7e72019-07-10 22:27:54 +0000836if [ $COUNT -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700837 espin $NOT_VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000838 echo -e "Configuring Helm $GEAR"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700839 if [ "$INSTALL_HELM" == "no" ]; then
840 bspin - "Skip Helm/Tiller Initialization"
841 espin - $NO_ENTRY
842 else
843 bspin - "Initialize Helm"
844 (set -x; helm init --upgrade >>$LOG 2>&1) >>$LOG 2>&1
845 espin - $VERIFIED
David Bainbridge4f1b5562019-08-19 04:46:52 +0000846 wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700847 fi
Test Userb5712372019-07-03 21:52:17 +0000848 bspin - "Add Google Incubator repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700849 (set -x; helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
850 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700851
Test Userba1e7e72019-07-10 22:27:54 +0000852 # HACK (sort-of) - the config for tiller is about to be patched, which will
853 # cause the tiller pod to be recreated. This can sometimes cause a timing
854 # issue with the "wait_for_pods" call on tiller as it may incorrectly
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700855 # identify the running/ready tiller pod that is soon to be terminated as
Test Userba1e7e72019-07-10 22:27:54 +0000856 # what it is waiting for. To avoid this issue we do a clean scale down and
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700857 # scale up of the pod so the script controlls when it should be expecting
Test Userba1e7e72019-07-10 22:27:54 +0000858 # things
859 (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 -0700860
Test Userb5712372019-07-03 21:52:17 +0000861 bspin - "Add Google Stable repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700862 (set -x; helm repo add stable https://kubernetes-charts.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
863 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000864 bspin - "Add ONF repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700865 (set -x; helm repo add onf https://charts.opencord.org >>$LOG 2>&1) >>$LOG 2>&1
866 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000867 bspin - "Update Helm repository cache"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700868 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
869 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700870
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700871 # Create and k8s service account so that Helm can create pods
Test Userb5712372019-07-03 21:52:17 +0000872 bspin - "Create Tiller ServiceAccount"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700873 (set -x; kubectl create serviceaccount --namespace kube-system tiller >>$LOG 2>&1) >>$LOG 2>&1
874 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000875 bspin - "Create Tiller ClusterRoleBinding"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700876 (set -x; kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller >>$LOG 2>&1) >>$LOG 2>&1
877 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000878 bspin - "Update Tiller Manifest"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700879 (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 +0000880
881 # HACK (sort-of) - part to, spin it back up
882 (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 -0700883 espin - $VERIFIED
884else
885 espin $VERIFIED
David Bainbridge46505fb2019-10-01 21:13:20 +0000886 if [ "$UPDATE_HELM_REPOS" == "yes" ]; then
887 bspin - "Update Helm repository cache"
888 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
889 espin - $VERIFIED
890 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700891fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000892wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000893if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000894 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000895fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700896
David Bainbridgee87067b2019-08-12 22:00:12 +0000897STIME=$(date +%s)
David Bainbridge0774b232019-08-02 06:37:19 +0000898bspin "Verify Helm values file: $NAME-values.yaml"
899if [ ! -r "./$NAME-values.yaml" ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000900 espin $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000901 bspin - "Download Helm values file: $TYPE-values.yaml to $NAME-values.yaml $DOWNLOAD"
902 (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 +0000903 espin - $VERIFIED
904else
905 espin $VERIFIED
906fi
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
Test Userba1e7e72019-07-10 22:27:54 +0000910
David Bainbridge99ac7a22019-08-31 02:26:43 +0000911STIME=$(date +%s)
912bspin "Verify or download chart specific values files $DOWNLOAD"
913VALUES_FILES="monkey-values.yaml"
914for i in $VALUES_FILES; do
915 if [ ! -r ./$i ]; then
916 (set -x; curl -o ./$i -sSL https://raw.githubusercontent.com/ciena/kind-voltha/master/$i >>$LOG 2>&1) >>$LOG 2>&1
917 fi
918done
919espin $VERIFIED
920if [ "$WITH_TIMINGS" == "yes" ]; then
921 printtime $(expr $(date +%s) - $STIME)
922fi
923
924if [ "$WITH_CHAOS" == "yes" ]; then
925 bspin "Verify or clone kube-monkey helm chart $DOWNLOAD"
926 if [ -r ./kube-monkey ]; then
927 espin $VERIFIED
928 else
929 espin $NOT_VERIFIED
930 bspin - "GIT clone kube-monkey"
931 (set -x; git clone https://github.com/asobti/kube-monkey kube-monkey >>$LOG 2>&1) >>$LOG 2>&1
932 espin - $VERIFIED
933 fi
934fi
935
Test Userba1e7e72019-07-10 22:27:54 +0000936if [ "$JUST_K8S" == "yes" ]; then
937 echo "Environment deployed, not deploying VOLTHA artifacts as requested. Good bye."
938 echo ""
939 echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
940 echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
941 echo "tools required by VOLTHA in your command path. " | tee -a $LOG
942 echo "" | tee -a $LOG
943 echo -en $BOLD
944 if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000945 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +0000946 fi
947 echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
948 echo -en $NORMAL
949 echo "" | tee -a $LOG
950 echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
951 exit 0
952fi
953
David Bainbridgee87067b2019-08-12 22:00:12 +0000954STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000955bspin "Verify ETCD Operator $OLD_KEY"
Test User7d866122019-07-09 17:52:35 +0000956if [ $(helm list --deployed --short --namespace voltha "^etcd-operator\$" | wc -l) -ne 1 ]; then
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700957 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +0000958 helm_install - voltha etcd-operator stable/etcd-operator latest "Install ETCD Operator"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700959else
960 espin $VERIFIED
961fi
Test User01ed0642019-07-03 20:17:06 +0000962EXPECT=$(test "$TYPE" == "minimal" && echo "1" || echo "3")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000963wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for ETCD Operator to start" "etcd-operator-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000964if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000965 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000966fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700967
David Bainbridgee87067b2019-08-12 22:00:12 +0000968STIME=$(date +%s)
David Bainbridgeb270c202019-07-26 01:44:42 +0000969if [ $WITH_ONOS == "yes" ]; then
970 bspin "Verify ONOS installed $BIRD"
971 if [ $(helm list --deployed --short --namespace default "^onos\$" | wc -l) -ne 1 ]; then
972 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +0000973 EXTRA_HELM_FLAGS="$SET_TAG $EXTRA_HELM_FLAGS" helm_install - default onos onf/onos latest "Install ONOS"
David Bainbridgeb270c202019-07-26 01:44:42 +0000974 else
975 espin $VERIFIED
976 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000977 wait_for_pods - "default" 1 "includes" -1 "Waiting for ONOS to start" "onos-.*"
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700978
David Bainbridgeb270c202019-07-26 01:44:42 +0000979 bspin - "Forward ONOS API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800980 kill_port_forward onos-ui
981 port_forward default onos-ui $ONOS_API_PORT 8181
David Bainbridgeb270c202019-07-26 01:44:42 +0000982 espin - $VERIFIED
983 bspin - "Forward ONOS SSH port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800984 kill_port_forward onos-ssh
985 port_forward default onos-ssh $ONOS_SSH_PORT 8101
David Bainbridgeb270c202019-07-26 01:44:42 +0000986 espin - $VERIFIED
David Bainbridged31d6122019-08-13 19:37:59 +0000987 bspin - "Verify or download ONOS configuration support files $DOWNLOAD"
David Bainbridge2b19e832019-08-16 02:40:53 +0000988 ONOS_FILES="olt-onos-enableExtraneousRules.json olt-onos-olt-settings.json onos-aaa.json \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000989 onos-dhcpl2relay.json onos-kafka.json onos-sadis-sample.json"
David Bainbridged31d6122019-08-13 19:37:59 +0000990 (set -x; mkdir -p ./onos-files >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge2b19e832019-08-16 02:40:53 +0000991 for i in $ONOS_FILES; do
David Bainbridged31d6122019-08-13 19:37:59 +0000992 if [ ! -r ./onos-files/$i ]; then
993 (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
994 fi
995 done
Test Userba1e7e72019-07-10 22:27:54 +0000996 espin - $VERIFIED
David Bainbridge27790d62019-08-13 22:43:19 +0000997
998 if [ $INSTALL_ONOS_APPS == "yes" ]; then
999 bspin - "Installing custom ONOS applications"
1000 if [ -x onos-files/onos-apps -a $(ls -1 onos-files/onos-apps/*.oar 2>/dev/null | wc -l) -gt 0 ]; then
1001 for OAR in $(ls -1 onos-files/onos-apps/*.oar); do
1002 sspin - "Installing custom ONOS applications - $OAR$CEOL"
David Bainbridge2b19e832019-08-16 02:40:53 +00001003 override_onos_app $OAR
David Bainbridge27790d62019-08-13 22:43:19 +00001004 done
1005 espin - "$VERIFIED Installing custom ONOS applications$CEOL"
1006 else
1007 espin - "$NOT_VERIFIED Installing custom ONOS applications - None Found"
1008 fi
1009 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001010
David Bainbridge2b19e832019-08-16 02:40:53 +00001011 push_onos_config "Push ONOS Kafka Configuration" "network/configuration/apps/org.opencord.kafka" "onos-files/onos-kafka.json"
1012 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 +00001013 push_onos_config "Enable VOLTHA ONOS DHCP provisioning" "configuration/org.opencord.olt.impl.Olt" "onos-files/olt-onos-olt-settings.json"
1014 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 +00001015 if [ -f onos-files/onos-sadis.json ]; then
1016 push_onos_config "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "onos-files/onos-sadis.json"
1017 elif [ "$CONFIG_SADIS" == "yes" ]; then
David Bainbridge90fd8e32019-08-21 23:32:47 +00001018 SADIS_CFG=onos-files/onos-sadis-sample.json
David Bainbridge2b19e832019-08-16 02:40:53 +00001019 push_onos_config "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "$SADIS_CFG"
1020 fi
Test Userba1e7e72019-07-10 22:27:54 +00001021fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001022if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001023 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001024fi
Test Userba1e7e72019-07-10 22:27:54 +00001025
David Bainbridgee87067b2019-08-12 22:00:12 +00001026STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001027bspin "Verify VOLTHA installed $HIGH_VOLTAGE"
Test User7d866122019-07-09 17:52:35 +00001028if [ $(helm list --deployed --short --namespace voltha "^voltha\$" | wc -l) -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001029 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001030 helm_install - voltha voltha $VOLTHA_CHART $VOLTHA_CHART_VERSION "Install VOLTHA Core"
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001031else
1032 espin $VERIFIED
1033fi
Test Userba1e7e72019-07-10 22:27:54 +00001034
David Bainbridge90fd8e32019-08-21 23:32:47 +00001035VOLTHA="voltha-ofagent-.* \
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001036 ro-core.* \
1037 rw-core.* \
1038 voltha-api-server-.* \
1039 voltha-cli-server-.* \
1040 voltha-etcd-cluster-.* \
1041 voltha-kafka-.* \
1042 voltha-zookeeper-.*"
David Bainbridge46505fb2019-10-01 21:13:20 +00001043#EXPECT=$(test "$TYPE" == "minimal" && echo "8" || echo "11")
Test User01ed0642019-07-03 20:17:06 +00001044EXPECT=$(test "$TYPE" == "minimal" && echo "9" || echo "11")
David Bainbridge4f1b5562019-08-19 04:46:52 +00001045wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for VOLTHA Core to start" $VOLTHA
David Bainbridgee87067b2019-08-12 22:00:12 +00001046if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001047 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001048fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001049
David Bainbridge46505fb2019-10-01 21:13:20 +00001050if [ "$WITH_ADAPTERS" == "yes" ]; then
1051 STIME=$(date +%s)
1052 EXPECT=0
1053 echo -e "Verify Adapters $PLUG"
1054 if [ "$WITH_SIM_ADAPTERS" == "yes" ]; then
1055 bspin - "Verify Simulated Adapters installed"
1056 if [ $(helm list --deployed --short --namespace voltha "^sim\$" | wc -l) -ne 1 ]; then
1057 espin - $NOT_VERIFIED
1058 helm_install - voltha sim $VOLTHA_ADAPTER_SIM_CHART $VOLTHA_ADAPTER_SIM_CHART_VERSION "Install Simulated Adapters"
1059 else
1060 espin - $VERIFIED
1061 fi
1062 EXPECT=$(expr $EXPECT + 2)
1063 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001064
David Bainbridge46505fb2019-10-01 21:13:20 +00001065 if [ "$WITH_OPEN_ADAPTERS" == "yes" ]; then
1066 bspin - "Verify OpenOLT Adapter installed"
1067 if [ $(helm list --deployed --short --namespace voltha "^open-olt\$" | wc -l) -ne 1 ]; then
1068 espin - $NOT_VERIFIED
1069 helm_install - voltha open-olt $VOLTHA_ADAPTER_OPEN_OLT_CHART $VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION "Install OpenOLT Adapter"
1070 else
1071 espin - $VERIFIED
1072 fi
1073 bspin - "Verify OpenONU Adapter installed"
1074 if [ $(helm list --deployed --short --namespace voltha "^open-onu\$" | wc -l) -ne 1 ]; then
1075 espin - $NOT_VERIFIED
1076 helm_install - voltha open-onu $VOLTHA_ADAPTER_OPEN_ONU_CHART $VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION "Install OpenONU Adapter"
1077 else
1078 espin - $VERIFIED
1079 fi
1080 EXPECT=$(expr $EXPECT + 2)
1081 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001082
David Bainbridge46505fb2019-10-01 21:13:20 +00001083 ADAPTERS="adapter-.*"
1084 wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for adapters to start" $ADAPTERS
1085 if [ "$WITH_TIMINGS" == "yes" ]; then
1086 printtime $(expr $(date +%s) - $STIME)
1087 fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001088fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001089
Test User7d866122019-07-09 17:52:35 +00001090if [ $WITH_BBSIM == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001091 STIME=$(date +%s)
Test User7d866122019-07-09 17:52:35 +00001092 echo -e "Verify BBSIM $PLUG"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001093 bspin - "Verify BBSIM Installed"
Test User7d866122019-07-09 17:52:35 +00001094 if [ $(helm list --deployed --short --namespace voltha "^bbsim\$" | wc -l) -ne 1 ]; then
1095 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001096 helm_install - voltha bbsim $VOLTHA_BBSIM_CHART $VOLTHA_BBSIM_CHART_VERSION "Install BBSIM"
Test User7d866122019-07-09 17:52:35 +00001097 else
1098 espin - $VERIFIED
1099 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001100 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for BBSIM to start" "bbsim-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001101 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001102 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001103 fi
Test User7d866122019-07-09 17:52:35 +00001104fi
1105
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001106if [ $WITH_RADIUS == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001107 STIME=$(date +%s)
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001108 echo -e "Verify RADIUS $LOCK"
1109 bspin - "Verify RADIUS Installed"
1110 if [ $(helm list --deployed --short --namespace voltha "^radius\$" | wc -l) -ne 1 ]; then
1111 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001112 helm_install - voltha radius onf/freeradius latest "Install RADIUS"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001113 else
1114 espin - $VERIFIED
1115 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001116 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for RADIUS to start" "radius-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001117 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001118 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001119 fi
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001120fi
1121
David Bainbridgee87067b2019-08-12 22:00:12 +00001122STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001123bspin - "Forward VOLTHA API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001124kill_port_forward voltha-api
1125port_forward voltha voltha-api $VOLTHA_API_PORT 55555
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001126espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +00001127bspin - "Forward VOLTHA SSH port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001128kill_port_forward voltha-ssh
1129port_forward voltha voltha-ssh $VOLTHA_SSH_PORT 5022
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001130espin - $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +00001131bspin - "Forward VOLTHA ETCD port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001132kill_port_forward voltha-etcd-cluster-client
1133port_forward voltha voltha-etcd-cluster-client $VOLTHA_ETCD_PORT 2379
David Bainbridgeac7f8072019-08-01 22:15:33 +00001134espin - $VERIFIED
David Bainbridgee87067b2019-08-12 22:00:12 +00001135if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001136 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001137fi
Test User3d7ad8e2019-07-03 06:15:44 +00001138
David Bainbridgeb270c202019-07-26 01:44:42 +00001139if [ $WITH_ONOS == "yes" -a $WITH_RADIUS == "yes" ]; then
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001140 bspin "Configure ONOS RADIUS Connection $GEAR"
Andy Bavier658ebef2019-11-05 17:22:56 -07001141 (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 +00001142 espin $VERIFIED
1143fi
1144
David Bainbridge99ac7a22019-08-31 02:26:43 +00001145if [ "$WITH_CHAOS" == "yes" ]; then
1146 STIME=$(date +%s)
1147 echo -e "Verify kube-monkey $LOCK"
1148 bspin - "Verify kube-monkey Installed"
1149 if [ $(helm list --deployed --short --namespace kube-monkey "^monkey\$" | wc -l) -ne 1 ]; then
1150 espin - $NOT_VERIFIED
1151 helm_install - kube-monkey monkey ./kube-monkey/helm/kubemonkey latest "Install Chaos Monkey"
1152 else
1153 espin - $VERIFIED
1154 fi
1155 wait_for_pods - "kube-monkey" 1 "includes" -1 "Waiting for Chaos to start" "monkey-.*"
1156 if [ "$WITH_TIMINGS" == "yes" ]; then
1157 printtime $(expr $(date +%s) - $STIME)
1158 fi
1159fi
1160
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001161bspin "Create voltctl configuration file"
Test User3d7ad8e2019-07-03 06:15:44 +00001162(set -x; mkdir -p $HOME/.volt >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge0774b232019-08-02 06:37:19 +00001163(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 +00001164espin $VERIFIED
Test User08ebbd92019-07-03 17:15:39 +00001165
David Bainbridge0774b232019-08-02 06:37:19 +00001166if [ ! -f "$NAME-env.sh" ]; then
1167 touch $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001168fi
1169
David Bainbridge596f30d2019-07-30 17:07:59 +00001170for O in $ALL_OPTIONS; do
1171 VAL=$(eval echo \$$O)
David Bainbridge0774b232019-08-02 06:37:19 +00001172 if [ ! -z "$VAL" -a $(grep -c "^export $O=" $NAME-env.sh) -eq 0 ]; then
1173 echo "export $O=\"$(eval echo \$$O)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001174 fi
1175done
1176
David Bainbridge0774b232019-08-02 06:37:19 +00001177if [ $DEPLOY_K8S == "yes" -a $(grep -c "^export KUBECONFIG=" $NAME-env.sh) -eq 0 ]; then
1178 echo "export KUBECONFIG=\"$(./bin/kind get kubeconfig-path --name=voltha-$NAME)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001179fi
1180
David Bainbridge0774b232019-08-02 06:37:19 +00001181if [ $(grep -c "^export VOLTCONFIG=" $NAME-env.sh) -eq 0 ]; then
1182 echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001183fi
1184
David Bainbridge0774b232019-08-02 06:37:19 +00001185if [ $(grep -c "^export PATH=" $NAME-env.sh) -eq 0 ]; then
1186 echo "export PATH=\"$GOPATH/bin:\$PATH\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001187fi
1188
Test User7d866122019-07-09 17:52:35 +00001189echo ""
Test User08ebbd92019-07-03 17:15:39 +00001190echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
1191echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
1192echo "tools required by VOLTHA in your command path. " | tee -a $LOG
1193echo "" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001194echo -en $BOLD
Test Userba1e7e72019-07-10 22:27:54 +00001195if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +00001196 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001197fi
David Bainbridge0774b232019-08-02 06:37:19 +00001198echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001199echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001200echo -en $NORMAL
Test User08ebbd92019-07-03 17:15:39 +00001201echo "" | tee -a $LOG
1202echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
1203
David Bainbridge712afb82019-08-14 19:55:58 +00001204if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridgef858a022019-08-14 21:25:11 +00001205 echo -e "$CLOCK ${BOLD}TOTAL: $(duration $(expr $(date +%s) - $TOTAL_START_TIME))${NORMAL}"
David Bainbridge712afb82019-08-14 19:55:58 +00001206fi