blob: e154bbbd0bd43e12512ebb8cd95bbec00f4225e7 [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 K. Bainbridgeebf38d92020-02-10 10:46:31 -080033VOLTCTL_VERSION=${VOLTCTL_VERSION:-latest}
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -080034KIND_VERSION=${KIND_VERSION:-v0.5.1}
David K. Bainbridgeb3a99372020-01-08 14:39:06 -080035VK_RELEASE=${VK_RELEASE:-master}
Test User08ebbd92019-07-03 17:15:39 +000036
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}
Matteo Scandolo78dfee02020-02-13 16:18:03 -080073WITH_EAPOL=${WITH_EAPOL:-yes}
74WITH_DHCP=${WITH_DHCP:-yes}
75WITH_IGMP=${WITH_IGMP:-no}
David Bainbridgeb270c202019-07-26 01:44:42 +000076WITH_ONOS=${WITH_ONOS:-yes}
David Bainbridge99ac7a22019-08-31 02:26:43 +000077WITH_CHAOS=${WITH_CHAOS:-no}
David Bainbridge46505fb2019-10-01 21:13:20 +000078WITH_ADAPTERS=${WITH_ADAPTERS:-yes}
79WITH_SIM_ADAPTERS=${WITH_SIM_ADAPTERS:-yes}
80WITH_OPEN_ADAPTERS=${WITH_OPEN_ADAPTERS:-yes}
David Bainbridge05cd8822019-11-19 17:43:53 +000081ONLY_ONE=${ONLY_ONE:-yes}
David Bainbridge2b19e832019-08-16 02:40:53 +000082CONFIG_SADIS=${CONFIG_SADIS:-no}
David Bainbridge27790d62019-08-13 22:43:19 +000083INSTALL_ONOS_APPS=${INSTALL_ONOS_APPS:-no}
Test Userba1e7e72019-07-10 22:27:54 +000084JUST_K8S=${JUST_K8S:-no}
85DEPLOY_K8S=${DEPLOY_K8S:-yes}
David K. Bainbridge0e89cb92019-07-17 11:30:10 -070086INSTALL_KUBECTL=${INSTALL_KUBECTL:-yes}
87INSTALL_HELM=${INSTALL_HELM:-yes}
David Bainbridge46505fb2019-10-01 21:13:20 +000088UPDATE_HELM_REPOS=${UPDATE_HELM_REPOS:-yes}
Matteo Scandolofab98622020-01-28 15:17:20 -080089WAIT_ON_DOWN=${WAIT_ON_DOWN:-yes}
David Bainbridge5b7b96b2019-07-25 20:29:13 +000090VOLTHA_LOG_LEVEL=${VOLTHA_LOG_LEVEL:-WARN}
David Bainbridge90fd8e32019-08-21 23:32:47 +000091VOLTHA_CHART=${VOLTHA_CHART:-onf/voltha}
92VOLTHA_CHART_VERSION=${VOLTHA_CHART_VERSION:-latest}
93VOLTHA_BBSIM_CHART=${VOLTHA_BBSIM_CHART:-onf/bbsim}
Matteo Scandolodcd29f52019-10-07 15:42:42 -070094VOLTHA_BBSIM_CHART_VERSION=${VOLTHA_BBSIM_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000095VOLTHA_ADAPTER_SIM_CHART=${VOLTHA_ADAPTER_SIM_CHART:-onf/voltha-adapter-simulated}
David Bainbridge90fd8e32019-08-21 23:32:47 +000096VOLTHA_ADAPTER_SIM_CHART_VERSION=${VOLTHA_ADAPTER_SIM_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000097VOLTHA_ADAPTER_OPEN_OLT_CHART=${VOLTHA_ADAPTER_OPEN_OLT_CHART:-onf/voltha-adapter-openolt}
David Bainbridge90fd8e32019-08-21 23:32:47 +000098VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION=${VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000099VOLTHA_ADAPTER_OPEN_ONU_CHART=${VOLTHA_ADAPTER_OPEN_ONU_CHART:-onf/voltha-adapter-openonu}
David Bainbridge90fd8e32019-08-21 23:32:47 +0000100VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION=${VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION:-latest}
Andrea Campanella21323292019-12-18 11:44:19 -0800101ONOS_CHART_VERSION=${ONOS_CHART_VERSION:-latest}
David Bainbridge70c0ea82019-11-14 23:25:26 +0000102EXTRA_HELM_INSTALL_ARGS=
Test Userba1e7e72019-07-10 22:27:54 +0000103
104HAVE_GO=$(which go >/dev/null 2>&1 && echo "yes" || echo "no")
105HOSTOS=$(uname -s | tr "[:upper:]" "[:lower:"])
106HOSTARCH=$(uname -m | tr "[:upper:]" "[:lower:"])
107if [ $HOSTARCH == "x86_64" ]; then
108 HOSTARCH="amd64"
109fi
Test User7d866122019-07-09 17:52:35 +0000110
111# Verify TYPE setting
112if [ $(echo ":minimal:full:" | grep -ic ":$TYPE:") -eq 0 ]; then
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700113 >&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 +0000114 exit 1
115fi
116
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000117# Used to verify configuration values are set to "yes" or "no" value or convert
118# equivalents to "yes" or "no"
119function verify_yes_no() {
120 local VAR=$1
121 local VAL=$(eval echo \$$VAR)
122 if [ $(echo ":y:yes:true:n:no:false:1:0:" | grep -ic ":$VAL:") -eq 0 ]; then
123 >&2 echo -e "${RED}${BOLD}${ERROR}ERROR:${NORMAL}${RED} Invalid '$VAR' value of '$VAL'. Should be 'yes' or 'no'${NORMAL}"
124 echo "INVALID"
125 return 1
126 fi
127 if [ $(echo ":y:yes:true:1:" | grep -ic ":$VAL:") -eq 1 ]; then
128 echo "yes"
129 else
130 echo "no"
131 fi
132 return 0
133}
Test User7d866122019-07-09 17:52:35 +0000134
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000135ALL_YES_NO="\
136 WITH_TIMINGS \
137 WITH_BBSIM \
138 WITH_RADIUS \
Matteo Scandolo78dfee02020-02-13 16:18:03 -0800139 WITH_EAPOL \
140 WITH_DHCP \
141 WITH_IGMP \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000142 WITH_ONOS \
David Bainbridge99ac7a22019-08-31 02:26:43 +0000143 WITH_CHAOS \
David Bainbridge46505fb2019-10-01 21:13:20 +0000144 WITH_ADAPTERS \
145 WITH_SIM_ADAPTERS \
146 WITH_OPEN_ADAPTERS \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000147 CONFIG_SADIS \
148 JUST_K8S \
149 DEPLOY_K8S \
150 INSTALL_ONOS_APPS \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000151 INSTALL_KUBECTL \
152 INSTALL_HELM \
David Bainbridge46505fb2019-10-01 21:13:20 +0000153 UPDATE_HELM_REPOS \
David Bainbridge4f1b5562019-08-19 04:46:52 +0000154 WAIT_ON_DOWN \
David Bainbridge70c0ea82019-11-14 23:25:26 +0000155 ONLY_ONE \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000156 "
David Bainbridge5b7b96b2019-07-25 20:29:13 +0000157
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000158ALL_OPTIONS="\
159 NAME \
160 TYPE \
161 $ALL_YES_NO \
162 VOLTHA_LOG_LEVEL \
163 VOLTHA_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000164 VOLTHA_CHART_VERSION \
165 VOLTHA_BBSIM_CHART \
166 VOLTHA_BBSIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000167 VOLTHA_ADAPTER_SIM_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000168 VOLTHA_ADAPTER_SIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000169 VOLTHA_ADAPTER_OPEN_OLT_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000170 VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000171 VOLTHA_ADAPTER_OPEN_ONU_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000172 VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION \
Andrea Campanella21323292019-12-18 11:44:19 -0800173 ONOS_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000174 ONOS_API_PORT \
175 ONOS_SSH_PORT \
176 VOLTHA_API_PORT \
177 VOLTHA_SSH_PORT \
178 VOLTHA_ETCD_PORT \
David K. Bainbridge00ecd382020-02-28 12:31:58 -0800179 VOLTHA_KAFKA_PORT \
David K. Bainbridge8f7f30b2020-01-08 13:06:16 -0800180 VK_RELEASE \
181 KIND_VERSION \
182 VOLTCTL_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000183 "
David Bainbridge01294952019-07-30 19:33:45 +0000184
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000185# Iterate over yes/no configuration options and validate
186for VAR in $ALL_YES_NO; do
187 eval $VAR=$(verify_yes_no $VAR)
188 if [ "$(eval echo \$$VAR)" == "INVALID" ]; then
189 exit 1;
190 fi
191done
David Bainbridgeb270c202019-07-26 01:44:42 +0000192
David Bainbridge0774b232019-08-02 06:37:19 +0000193mkdir -p .voltha
194touch .voltha/ports
195HAVE=$(grep $NAME .voltha/ports)
196if [ "$HAVE X" == " X" ]; then
197 # Find free port prefix
198 START=81
199 while true; do
200 if [ $(grep -c $START .voltha/ports) -eq 0 ]; then
201 break
202 fi
203 START=$(expr $START + 1)
204 done
205 DELTA=$(expr $START - 81)
David Bainbridgea2595422019-10-22 03:54:28 +0000206 ONOS_API_PORT=${ONOS_API_PORT:-${START}81}
207 ONOS_SSH_PORT=${ONOS_SSH_PORT:-${START}01}
208 VOLTHA_API_PORT=${VOLTHA_API_PORT:-5$(expr 55 + $DELTA)55}
209 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(expr 50 + $DELTA)22}
210 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(expr 23 + $DELTA)79}
David K. Bainbridge00ecd382020-02-28 12:31:58 -0800211 VOLTHA_KAFKA_PORT=${VOLTHA_KAFKA_PORT:-$(expr 90 + $DELTA)92}
Test User01ed0642019-07-03 20:17:06 +0000212else
David Bainbridge0774b232019-08-02 06:37:19 +0000213 VALUES=$(echo $HAVE | sed -e 's/\s//g' | cut -d= -f2)
David Bainbridgea2595422019-10-22 03:54:28 +0000214 ONOS_API_PORT=${ONOS_API_PORT:-$(echo $VALUES | cut -d, -f1)}
215 ONOS_SSH_PORT=${ONOS_SSH_PORT:-$(echo $VALUES | cut -d, -f2)}
216 VOLTHA_API_PORT=${VOLTHA_API_PORT:-$(echo $VALUES | cut -d, -f3)}
217 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(echo $VALUES | cut -d, -f4)}
218 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(echo $VALUES | cut -d, -f5)}
David K. Bainbridge00ecd382020-02-28 12:31:58 -0800219 VOLTHA_KAFKA_PORT=${VOLTHA_KAFKA_PORT:-$(echo $VALUES | cut -d, -f6)}
220
221 echo "$VOLTHA_KAFKA_PORT"
222
223
224 # A bit of a hueristic required here as the KAFKA port forward was
225 # added after the .voltha/ports files was created. Basically, if
226 # the VOLTHA_KAFKA_PORT isn't in the file then calculate the original
227 # DELTA from the VOLTHA_SSH_PORT and apply it to the VOLTHA_KAFKA_PORT
228 if [ -z "$VOLTHA_KAFKA_PORT" ]; then
229 DELTA=$((VOLTHA_SSH_PORT/100-50))
230 VOLTHA_KAFKA_PORT=${VOLTHA_KAFKA_PORT:-$(expr 90 + $DELTA)92}
231 fi
Test User01ed0642019-07-03 20:17:06 +0000232fi
233
David Bainbridge0774b232019-08-02 06:37:19 +0000234PORTTMP=$(mktemp -u)
235cat .voltha/ports | grep -v $NAME > $PORTTMP
David K. Bainbridge00ecd382020-02-28 12:31:58 -0800236echo "$NAME=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT,$VOLTHA_KAFKA_PORT" >> $PORTTMP
David Bainbridge0774b232019-08-02 06:37:19 +0000237cp $PORTTMP .voltha/ports
238rm -f $PORTTMP
239
David Bainbridge27790d62019-08-13 22:43:19 +0000240export ONOS_API_PORT ONOS_SSH_PORT
David Bainbridge01294952019-07-30 19:33:45 +0000241
Test Userd87942b2019-07-03 07:20:24 +0000242IDX=1
David Bainbridgee87067b2019-08-12 22:00:12 +0000243CLOCK="TIME:"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000244SPIN_PARTS=
245NOT_VERIFIED=
David Bainbridgef858a022019-08-14 21:25:11 +0000246THEX=
247BUILD=
248CROSS=
249ENTER=
David Bainbridge38dc1e82019-08-12 15:18:45 +0000250VERIFIED=
251HELM=
252OLD_KEY=
253BIRD=
254HIGH_VOLTAGE=
255PLUG=
256RESTART=
257FORWARD=
258INSTALL=
259STOP=
260GO=
261DOWNLOAD=
262GEAR=
263NO_ENTRY=
264LOCK=
265
266if [ $FANCY -eq 1 ]; then
267 SPIN_PARTS="\
268 \xe2\xa2\x8e\xe2\xa1\xb0 \
269 \xe2\xa2\x8e\xe2\xa1\xa1 \
270 \xe2\xa2\x8e\xe2\xa1\x91 \
271 \xe2\xa2\x8e\xe2\xa0\xb1 \
272 \xe2\xa0\x8e\xe2\xa1\xb1 \
273 \xe2\xa2\x8a\xe2\xa1\xb1 \
274 \xe2\xa2\x8c\xe2\xa1\xb1 \
275 \xe2\xa2\x86\xe2\xa1\xb1 \
276 "
David Bainbridgee87067b2019-08-12 22:00:12 +0000277 CLOCK="\xe2\x8f\xb1"
David Bainbridgef858a022019-08-14 21:25:11 +0000278 THEX="${RED}${BOLD}\xe2\x9c\x97\x20${NORMAL}"
279 ENTER="${YELLOW}${BOLD}\xe2\x8e\x86${NORMAL}"
280 CROSS="${YELLOW}${BOLD}\xe2\x9c\x9a${NORMAL}"
281 BUILD="${YELLOW}${BOLD}\xf0\x9f\x8f\x97${NORMAL}"
282 NOT_VERIFIED="$BUILD"
283 VERIFIED="${GREEN}${BOLD}\xe2\x9c\x93\x20${NORMAL}"
284 HELM="${BLUE}${BOLD}\xE2\x8E\x88${NORMAL}"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000285 OLD_KEY="\xF0\x9F\x97\x9D"
286 BIRD="\xF0\x9F\x90\xA6"
287 HIGH_VOLTAGE="\xE2\x9A\xA1"
288 PLUG="\xF0\x9F\xa7\xa9"
289 RESTART="\xf0\x9f\x94\x84"
290 FORWARD="\xE2\x87\xA8"
291 INSTALL="\xF0\x9F\x8F\x97"
292 STOP="\xf0\x9f\x9b\x91"
293 GO="\xf0\x9f\x9a\x80"
294 DOWNLOAD="\xf0\x9f\x93\xa5"
295 GEAR="\xe2\x9a\x99"
296 NO_ENTRY="\xe2\x9b\x94"
297 LOCK="\xf0\x9f\x94\x92"
298fi
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700299
David Bainbridge712afb82019-08-14 19:55:58 +0000300duration() {
David Bainbridgee87067b2019-08-12 22:00:12 +0000301 local h=$(expr $1 / 3600)
302 local m=$(expr $1 % 3600 / 60)
303 local s=$(expr $1 % 60)
304 local t=""
305
306 if [ $h -gt 0 ]; then
307 t="$t${h}h"
308 fi
309 if [ $m -gt 0 ]; then
310 t="$t${m}m"
311 fi
David Bainbridge712afb82019-08-14 19:55:58 +0000312 echo "$t${s}s"
313}
314
315printtime() {
316 local INDENT=
317 if [ "$1" == "-" ]; then
318 INDENT=" "
319 shift
320 fi
321 echo -e "$INDENT $CLOCK $(duration $1)"
David Bainbridgee87067b2019-08-12 22:00:12 +0000322}
323
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700324bspin() {
Test Userd87942b2019-07-03 07:20:24 +0000325 IDX=1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700326 local INDENT=
327 if [ "$1" == "-" ]; then
328 INDENT=" "
329 shift
330 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000331 if [ $FANCY -eq 0 ]; then
332 LINE=$(echo $* | sed -e 's/[\s+-]//g')
333 if [ "$LINE X" == " X" ]; then
334 return
335 fi
336 echo -e "$CIVIS$INDENT$*"
337 else
338 echo -en "$CIVIS$INDENT $*"
339 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700340}
341
342sspin() {
343 local INDENT=
344 if [ "$1" == "-" ]; then
345 INDENT=" "
346 shift
347 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000348 if [ $FANCY -eq 0 ]; then
349 LINE=$(echo $* | sed -e 's/[\s+-]//g')
350 if [ "$LINE X" == " X" ]; then
351 return
352 fi
353 echo -e "$INDENT$*"
354 else
355 C=$(echo $SPIN_PARTS | cut '-d ' -f $IDX)
356 echo -en "\r$INDENT$C $*"
357 IDX=$(expr $IDX + 1)
358 if [ $IDX -gt 8 ]; then
359 IDX=1
360 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700361 fi
362}
363
364espin() {
365 local INDENT=
366 if [ "$1" == "-" ]; then
367 INDENT=" "
368 shift
369 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000370 if [ $FANCY -eq 0 ]; then
371 LINE=$(echo $* | sed -e 's/[\s+-]//g')
372 if [ "$LINE X" == " X" ]; then
373 return
374 fi
375 echo -e "$INDENT$*"
376 else
377 echo -e "\r$INDENT$*$CNORM"
378 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700379}
380
David Bainbridgeac7f8072019-08-01 22:15:33 +0000381if [ "$1" == "get" -a "$2" == "voltconfig" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000382 echo "$HOME/.volt/config-$NAME"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000383 exit
384fi
385
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700386if [ $# -ne 1 -o $(echo ":up:down:dump:" | grep -c ":$1:") -ne 1 ]; then
David Bainbridgeac7f8072019-08-01 22:15:33 +0000387 >&2 echo "What wouild you like to do today:"
388 >&2 echo " up - bring up voltha"
389 >&2 echo " down - tear down voltha"
390 >&2 echo " dump - create a debug dump of running system"
391 exit 1
392fi
393
David Bainbridge4f1b5562019-08-19 04:46:52 +0000394push_onos_config() {
Matteo Scandolo78dfee02020-02-13 16:18:03 -0800395 local TYPE=$1
396 local MSG=$2
397 local RESOURCE=$3
398 local DATA=$4
David Bainbridge4f1b5562019-08-19 04:46:52 +0000399
David K. Bainbridgeb4b163b2020-02-19 15:55:06 -0800400 # Thanks to the latest version of ONOS using the return code 207 this gets a
401 # whole lot nastier. Can't thank them enough for doing this. So in order to
402 # capture the command and the output in the log file as well as capture the
403 # status code to verify it is 200 and not 207 mutltiple files and a bit of
404 # hackery must be used. Thanks again ONOS.
405 local CMD_ECHO=$(mktemp -u)
406 local CMD_OUTPUT=$(mktemp -u)
407 local SC_OUTPUT=$(mktemp -u)
408
David Bainbridge4f1b5562019-08-19 04:46:52 +0000409 bspin - "$MSG $GEAR"
410 while true; do
Matteo Scandolo78dfee02020-02-13 16:18:03 -0800411 if [ $TYPE == "file" ]; then
David K. Bainbridgeb4b163b2020-02-19 15:55:06 -0800412 (set -x; curl --fail -sSL --user karaf:karaf -w "%{http_code}" -o $CMD_OUTPUT -X POST -H Content-Type:application/json http://127.0.0.1:$ONOS_API_PORT/onos/v1/$RESOURCE --data @$DATA >$SC_OUTPUT 2>/dev/null) >>$CMD_ECHO 2>&1
Matteo Scandolo78dfee02020-02-13 16:18:03 -0800413 fi
414 if [ $TYPE == "json" ]; then
David K. Bainbridgeb4b163b2020-02-19 15:55:06 -0800415 (set -x; curl --fail -sSL --user karaf:karaf -w "%{http_code}" -o $CMD_OUTPUT -X POST -H Content-Type:application/json http://127.0.0.1:$ONOS_API_PORT/onos/v1/$RESOURCE --data $DATA >$SC_OUTPUT 2>/dev/null) >>$CMD_ECHO 2>&1
Matteo Scandolo78dfee02020-02-13 16:18:03 -0800416 fi
David K. Bainbridgeb4b163b2020-02-19 15:55:06 -0800417 RESULT=$?
418 # Dump everything to the log
419 cat $CMD_ECHO >> $LOG
420 cat $CMD_OUTPUT >> $LOG
421 SC=$(cat $SC_OUTPUT)
422
423 # clean up temp files
424 rm -f $CMD_ECHO $CMD_OUTPUT $SC_OUTPUT
425 if [ $RESULT -eq 0 -a "$SC" == "200" ]; then
David Bainbridge4f1b5562019-08-19 04:46:52 +0000426 break
427 fi
Matteo Scandolo9a77a732020-01-09 14:24:12 -0800428 sleep 1
David Bainbridge4f1b5562019-08-19 04:46:52 +0000429 sspin -
430 done
431 espin - $VERIFIED
432}
433
Matteo Scandolo9a77a732020-01-09 14:24:12 -0800434check_onos_app_active() {
435 local APP_ID=$1
436
437 bspin - "Checking that $APP_ID is active $CLOCK"
438 while true; do
439 (set -x; curl --fail -sSL --user karaf:karaf -X GET http://127.0.0.1:$ONOS_API_PORT/onos/v1/applications/$APP_ID | grep ACTIVE >>$LOG 2>&1) >>$LOG 2>&1
440 if [ $? -eq 0 ]; then
441 break
442 fi
443 sleep 1
444 sspin -
445 done
446 sleep 5 # OSGI components take a little longer that the app to activate
447 espin - $VERIFIED
448}
449
David Bainbridge4f1b5562019-08-19 04:46:52 +0000450override_onos_app() {
451 local APP=$1
452 local NAME=$(basename $APP | sed -e 's/^[0-9][0-9]*-//g' -e 's/-.*$//g')
453 while true; do
454 sspin -
455 # Attempt to delete old version (if it exists)
456 (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
457 sspin -
458 if [ $? -ne 0 ]; then
459 continue
460 fi
461 (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
462 if [ $? -eq 0 ]; then
463 break
464 fi
465 sleep .2
466 done
467}
468
469activate_onos_app() {
470 local MSG="$1"
471 local APP=$2
472
473 bspin - "$MSG $GO"
474 while true; do
475 sspin -
476 (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
477 if [ $? -eq 0 ]; then
478 break
479 fi
480 sleep .2
481 done
482 espin - "$VERIFIED"
483}
484
485count_pods() {
486 local NAMESPACE=$1; shift
487 if [ "$NAMESPACE" == "all-namespaces" ]; then
488 NAMESPACE="--all-namespaces"
489 else
490 NAMESPACE="-n $NAMESPACE"
491 fi
492 echo "$NAMESPACE" > /tmp/t
493 local STATES=$1; shift
494 echo "$STATES" >> /tmp/t
495 local PODS=$(kubectl get $NAMESPACE pod -o go-template="{{range .items}}{{.metadata.name}}/{{.status.phase}}/_{{range .status.containerStatuses}}{{.ready}}_{{end}} {{end}}")
496 local COUNT=0
497 local PATTERNS="$*"
498 for POD in $PODS; do
499 local NAME=$(echo $POD | cut -d/ -f 1)
500 local STATE=$(echo $POD | cut -d/ -f 2)
501 local CONTAINERS=$(echo $POD | cut -d/ -f 3 | sed -e 's/_/ /g')
502 if [ "$STATES" == "*" -o $(echo "$STATES" | grep -c ":$STATE:") -ne 0 ]; then
503 echo "IN WITH $POD" >> /tmp/t
504 local TOTAL=$(echo $CONTAINERS | wc -w)
505 local FOUND=$(echo $CONTAINERS | grep -o true | wc -l)
506 if [ $TOTAL -eq $FOUND ]; then
507 for PATTERN in $PATTERNS; do
508 echo "TEST $PATTERN AGAINST $NAME" >> /tmp/t
509 if [[ $NAME =~ $PATTERN ]]; then
510 echo "COUNT $NAME" >> /tmp/t
511 COUNT=$(expr $COUNT + 1)
512 break
513 fi
514 done
515 fi
516 fi
517 done
518 echo $COUNT >> /tmp/t
519 echo $COUNT
520}
521
522wait_for_pods() {
523 local INDENT=
524 if [ "$1" == "-" ]; then
525 INDENT=$1; shift
526 fi
527 local NAMESPACE=$1; shift
528 local EXPECT=$1; shift
529 local TYPE=$1; shift
530 local RETRY=$1; shift
531 local MESSAGE=$1; shift
532 local PATTERNS=$*
David Bainbridge99ac7a22019-08-31 02:26:43 +0000533 local STATES=":Running:"
534 if [ "$TYPE" == "not" ]; then
535 STATES="*"
536 fi
537 local HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000538 local ALL=$HAVE
539 if [ "$TYPE" == "only" ]; then
540 ALL=$(count_pods "all-namespaces" "*" ".*")
541 fi
542 COUNT=$(expr 300 / 15)
543 bspin $INDENT $MESSAGE
544 sspin $INDENT
545 if [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; then
546 while [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; do
547 sspin $INDENT
548 COUNT=$(expr $COUNT - 1)
549 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000550 HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000551 ALL=$HAVE
552 if [ "$TYPE" == "only" ]; then
553 ALL=$(count_pods "all-namespaces" "*" ".*")
554 fi
555 COUNT=$(expr 300 / 15)
556 fi
557 sleep .15
558 done
559 fi
560 espin $INDENT $VERIFIED
561 if [ $HAVE -ne $EXPECT ]; then
562 return 1
563 fi
564 return 0
565}
566
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800567port_forward() {
568 local NS=$1
569 local SVC=$2
570 local FROM_PORT=$3
571 local TO_PORT=$4
572 local TAG=$SVC-$NAME
573
574 (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
575}
576
577kill_port_forward() {
578 local TAG=$1-$NAME
David Bainbridgec6871d22019-11-13 17:10:31 +0000579 local P_IDS=$(ps e -ww -A | grep "_TAG=$TAG" | grep -v grep | awk '{print $1}')
David Bainbridgebcf235b2019-11-12 21:33:58 +0000580 local PARENTS=
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800581 local KIDS=
David Bainbridgec6871d22019-11-13 17:10:31 +0000582 local UNKNOWN=
583 if [ ! -z "$P_IDS" ]; then
584 for P_ID in $P_IDS; do
585 local PP_ID=$(ps -o ppid $P_ID | tail -n +2)
586 if [ ! -z "$PP_ID" ]; then
587 if [ $PP_ID -eq 1 ]; then
588 PARENTS="$PARENTS $P_ID"
589 else
590 KIDS="$KIDS $P_ID"
591 fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800592 else
David Bainbridgec6871d22019-11-13 17:10:31 +0000593 UNKNOWN="$UNKNOWN $P_ID"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800594 fi
595 done
David Bainbridgec6871d22019-11-13 17:10:31 +0000596 (set -x; kill -9 $PARENTS $KIDS $UNKNOWN >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800597 fi
598}
599
David Bainbridgeac7f8072019-08-01 22:15:33 +0000600if [ "$1" == "down" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000601 echo "Tearing down voltha cluster $NAME"
602 LOG="down-$NAME.log"
603 echo $(date -u +"%Y%m%dT%H%M%SZ") >$LOG
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800604 bspin "Remove port-forwards: onos-ui-$NAME"
605 kill_port_forward onos-ui
606 sspin "Remove port-forwards: onos-ssh-$NAME$CEOL"
607 kill_port_forward onos-ssh
608 sspin "Remove port-forwards: voltha-api-$NAME$CEOL"
609 kill_port_forward voltha-api
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800610 sspin "Remove port-forwards: voltha-etcd-$NAME$CEOL"
611 kill_port_forward voltha-etcd-cluster-client
David K. Bainbridge00ecd382020-02-28 12:31:58 -0800612 sspin "Remove port-forwards: voltha-kafka-$NAME$CEOL"
613 kill_port_forward voltha-kafka
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800614 espin "$VERIFIED Remove port-forwards$CEOL"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000615 if [ $DEPLOY_K8S == "yes" ]; then
616 if [ -x ./bin/kind ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000617 bspin "Delete Kubernetes Kind Cluster"
618 (set -x; ./bin/kind delete cluster --name voltha-$NAME >>$LOG 2>&1) >>$LOG 2>&1
619 espin $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +0000620 else
David Bainbridge0774b232019-08-02 06:37:19 +0000621 espin "$NO_ENTRY Delete Kubernetes Kind Cluster: kind command not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000622 fi
623 else
624 EXISTS=$(helm list -q)
625 EXPECT="etcd-operator onos open-olt open-onu sim voltha bbsim radius"
David Bainbridge0774b232019-08-02 06:37:19 +0000626 bspin "Remove Helm Deployments"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000627 for i in $EXISTS; do
628 if [ $(echo $EXPECT | grep -c $i) -eq 1 ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000629 sspin "Remove Helm Deployments: $i$CEOL"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800630 (set -x; ./bin/helm delete --no-hooks --purge $i >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000631 fi
632 done
David Bainbridge0774b232019-08-02 06:37:19 +0000633 espin "$VERIFIED Remove Helm Deployments$CEOL"
David Bainbridge4f1b5562019-08-19 04:46:52 +0000634 if [ "$WAIT_ON_DOWN" == "yes" ]; then
635 # There should only be 13 or 15 PODs in the kube-system name
636 # space and no other PODs
David Bainbridge4f1b5562019-08-19 04:46:52 +0000637 PODS="coredns-.* \
638 etcd-voltha-$NAME-control-plane \
639 kindnet-.* \
640 kube-apiserver-voltha-$NAME-control-plane \
641 kube-controller-manager-voltha-$NAME-control-plane \
642 kube-proxy-.* \
643 kube-scheduler-voltha-$NAME-control-plane \
644 tiller-deploy-.*"
645 EXPECT=$(test "$TYPE" == "minimal" && echo "13" || echo "15")
David Bainbridge99ac7a22019-08-31 02:26:43 +0000646 PODS="adapter-.* \
647 bbsim.* \
648 etcd-operator.* \
649 radius.* \
650 voltha-.*"
Matteo Scandolo73442f92020-01-29 09:53:22 -0800651
David Bainbridge99ac7a22019-08-31 02:26:43 +0000652 EXPECT=0
653
Matteo Scandolo73442f92020-01-29 09:53:22 -0800654 if [ "$WITH_ONOS" == "yes" ]; then
655 ONOS_PODS="onos-.*"
656 wait_for_pods "default" $EXPECT "not" -1 "Waiting for ONOS PODs to terminate" $ONOS_PODS
657 fi
David Bainbridge99ac7a22019-08-31 02:26:43 +0000658 wait_for_pods "voltha" $EXPECT "not" -1 "Waiting for VOLTHA PODs to terminate" $PODS
David Bainbridge4f1b5562019-08-19 04:46:52 +0000659 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000660 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700661 exit
David Bainbridgeac7f8072019-08-01 22:15:33 +0000662fi
663
664if [ "$1" == "dump" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000665 LOG="dump-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000666 TS=$(date -u +"%Y%m%dT%H%M%SZ")
David Bainbridge76514a02019-10-08 01:50:35 +0000667 if [ ! -z "$DUMP_FROM" ]; then
668 TS=$(echo $DUMP_FROM | sed -e 's/[:-]//g')
669 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000670 WORK=$(mktemp -u -d)
David Bainbridge0774b232019-08-02 06:37:19 +0000671 DATA=$WORK/voltha-debug-dump-$NAME-$TS
David Bainbridgeac7f8072019-08-01 22:15:33 +0000672 mkdir -p $DATA
673 echo $TS > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000674 echo -e "Capturing debug dump to voltha-debug-dump-$NAME-$TS.tgz"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000675 bspin - "Copy install log"
David Bainbridge0774b232019-08-02 06:37:19 +0000676 if [ -f install-$NAME.log ]; then
677 (set -x; cp install-$NAME.log $DATA/install-$NAME.log) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000678 espin - $VERIFIED
679 else
David Bainbridge0774b232019-08-02 06:37:19 +0000680 espin - "$NO_ENTRY Copy install log: install-$NAME.log not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000681 fi
682 bspin - "Dumping Kubernetes PODs"
683 (set -x; kubectl get --all-namespaces pods >> $DATA/all-pods.txt 2>&1) >>$LOG 2>&1
684 espin - $VERIFIED
685 bspin - "Dumping Kubernetes SERVICEs"
686 (set -x; kubectl get --all-namespaces svc >> $DATA/all-services.txt 2>&1) >>$LOG 2>&1
687 espin - $VERIFIED
688 bspin - "Dumping Kubernetes EVENTs"
689 (set -x; kubectl get --all-namespaces events >> $DATA/all-events.txt 2>&1) >>$LOG 2>&1
690 espin - $VERIFIED
691 bspin - "Dumping VOLTHA POD details"
Matteo Scandolodcd29f52019-10-07 15:42:42 -0700692 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 +0000693 SINCE=
694 if [ ! -z "$DUMP_FROM" ]; then
695 SINCE="--since-time=$DUMP_FROM"
696 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000697 for POD in $PODS; do
David Bainbridge1f0655a2019-10-01 22:08:48 +0000698 NS=$(echo $POD | cut -d: -f1)
699 POD=$(echo $POD | cut -d: -f2)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000700 sspin - "Dumping VOLTHA POD details: $POD$CEOL"
701 mkdir -p $DATA/$POD
David Bainbridge1f0655a2019-10-01 22:08:48 +0000702 (set -x; kubectl describe -n $NS $POD >> $DATA/$POD/describe.txt 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000703 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000704 (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 +0000705 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000706 (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 +0000707 sspin - "Dumping VOLTHA POD details: $POD"
708 done
709 espin - "$VERIFIED Dumping VOLTHA POD details$CEOL"
710 bspin - "Dumping ETCD"
711 if [ "$(which etcdctl) X" != " X" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000712 (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 +0000713 espin - $VERIFIED
714 else
715 espin - "$NO_ENTRY Dumping ETCD: etcdctl command not available"
716 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000717 bspin - "Creating compressed TAR: voltha-debug-dump-$NAME-$TS.tgz"
718 (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 +0000719 espin - $VERIFIED
720 bspin - "Cleanup"
721 (set -x; rm -rf $WORK) >>$LOG 2>&1
722 espin - $VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000723 bspin - "$(ls -l voltha-debug-dump-$NAME-$TS.tgz)"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000724 espin - $VERIFIED
725 exit
726fi
727
David Bainbridge0774b232019-08-02 06:37:19 +0000728LOG="install-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000729date > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000730echo "PORTS=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000731
732# Output install options to log
733echo "OPTIONS" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000734for O in $ALL_OPTIONS; do
735 VAL=$(eval echo \$$O)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000736 if [ ! -z "$VAL" ]; then
737 printf " %-30s = %s\n" $O $VAL >> $LOG
738 fi
739done
740
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700741helm_install() {
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700742 local INDENT=
743 if [ "$1" == "-" ]; then
744 INDENT=$1; shift
745 fi
746 local NAMESPACE=$1; shift
David Bainbridge0774b232019-08-02 06:37:19 +0000747 local INAME=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700748 local CHART=$1; shift
David Bainbridge90fd8e32019-08-21 23:32:47 +0000749 local CHART_VERSION=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700750 local MESSAGE=$*
751
David Bainbridge90fd8e32019-08-21 23:32:47 +0000752 if [ "$CHART_VERSION X" != " X" -a "$CHART_VERSION" != "latest" ]; then
753 CHART_VERSION="--version $CHART_VERSION"
754 else
755 CHART_VERSION=
756 fi
757
David Bainbridge99ac7a22019-08-31 02:26:43 +0000758 local CHART_ARGS=
759 if [ -r "${INAME}-values.yaml" ]; then
760 CHART_ARGS="-f ${INAME}-values.yaml"
761 fi
762
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700763 COUNT=$(expr 300 / 15)
764 bspin $INDENT $MESSAGE
David Bainbridge70c0ea82019-11-14 23:25:26 +0000765 (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 -0700766 SUCCESS=$?
767 while [ $SUCCESS -ne 0 ]; do
768 sspin $INDENT
769 COUNT=$(expr $COUNT - 1)
770 if [ $COUNT -eq 0 ]; then
Andy Baviere22ff252019-12-19 11:40:31 -0700771 (set -x; helm delete --purge $INAME >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge99ac7a22019-08-31 02:26:43 +0000772 (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
Andy Baviere22ff252019-12-19 11:40:31 -0700773 SUCCESS=$?
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700774 COUNT=$(expr 300 / 15)
775 fi
776 sleep .15
777 done
778 espin $INDENT $VERIFIED
779}
780
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700781echo "INSTALL TYPE: $TYPE" >> $LOG
782
783bspin "Verify GOPATH"
784export GOPATH=$(pwd)
Test User3d7ad8e2019-07-03 06:15:44 +0000785mkdir -p $GOPATH/bin
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700786espin $VERIFIED
787
David Bainbridgee87067b2019-08-12 22:00:12 +0000788STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700789if [ "$INSTALL_KUBECTL" == "no" ]; then
790 bspin "Skip kubectl install"
791 espin $NO_ENTRY
Test Userc13bdc92019-07-03 20:57:49 +0000792else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700793 bspin "Verify kubectl $HELM"
794 if [ -x $GOPATH/bin/kubectl ]; then
795 espin $VERIFIED
796 else
797 espin $NOT_VERIFIED
798 bspin - "Download and install Kubernetes/kubectl $DOWNLOAD"
799 (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
800 (set -x; chmod 755 $GOPATH/bin/kubectl >>$LOG 2>&1) >>$LOG 2>&1
801 espin - $VERIFIED
802 fi
Test Userc13bdc92019-07-03 20:57:49 +0000803fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000804if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000805 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000806fi
Test Userc13bdc92019-07-03 20:57:49 +0000807
David Bainbridgee87067b2019-08-12 22:00:12 +0000808STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700809if [ "$DEPLOY_K8S" == "no" ]; then
810 bspin "Skip Kubernetes/Kind Deployment"
811 espin $NO_ENTRY
812else
Test Userba1e7e72019-07-10 22:27:54 +0000813 bspin "Verify Kubernetes/Kind $HELM"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800814 IS_INSTALLED=0
815 OP_TYPE="install"
Test Userba1e7e72019-07-10 22:27:54 +0000816 if [ -x $GOPATH/bin/kind ]; then
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800817 OP_TYPE="upgrade"
818 if [ $($GOPATH/bin/kind --version | grep -c $KIND_VERSION) -eq 1 ]; then
819 IS_INSTALLED=1
820 espin $VERIFIED
821 fi
822 fi
823 if [ $IS_INSTALLED -eq 0 ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000824 espin $NOT_VERIFIED
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800825 bspin - "Download and $OP_TYPE Kubernetes/kind $DOWNLOAD"
David Bainbridge9e2a6662019-07-11 17:07:57 +0000826 (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 +0000827 (set -x; chmod 755 $GOPATH/bin/kind >>$LOG 2>&1) >>$LOG 2>&1
828 espin - $VERIFIED
829 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700830fi
831
David Bainbridgee87067b2019-08-12 22:00:12 +0000832if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000833 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000834fi
835
836STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700837if [ "$INSTALL_HELM" == "no" ]; then
838 bspin "Skip Helm Install"
839 espin $NO_ENTRY
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700840else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700841 bspin "Verify Helm $HELM"
842 if [ -x $GOPATH/bin/helm ]; then
843 espin $VERIFIED
844 else
845 espin $NOT_VERIFIED
846 bspin - "Download and install Helm $DOWNLOAD"
David Bainbridgec6a6eb62019-10-18 22:50:07 +0000847 (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 -0700848 espin - $VERIFIED
849 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700850fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800851
David Bainbridgee87067b2019-08-12 22:00:12 +0000852if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000853 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000854fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700855
David Bainbridgee87067b2019-08-12 22:00:12 +0000856STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000857bspin "Verify voltctl $HIGH_VOLTAGE"
David Bainbridged2811972019-12-14 01:14:09 +0000858VOK=0
859VMESSAGE="install"
David K. Bainbridgeebf38d92020-02-10 10:46:31 -0800860export VC_VERSION="$VOLTCTL_VERSION"
861if [ "$VC_VERSION" == "latest" ]; then
862 export VC_VERSION=$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
863fi
Test User3d7ad8e2019-07-03 06:15:44 +0000864if [ -x $GOPATH/bin/voltctl ]; then
David Bainbridge1ba64f12019-12-18 00:40:13 +0000865 VHAVE=$($GOPATH/bin/voltctl version --clientonly -o json | jq -r .version)
David K. Bainbridgeebf38d92020-02-10 10:46:31 -0800866 if [ $? -eq 0 -a "$VHAVE" == "$VC_VERSION" ]; then
David Bainbridged2811972019-12-14 01:14:09 +0000867 VOK=1
David Bainbridge1ba64f12019-12-18 00:40:13 +0000868 espin $VERIFIED
869 else
David K. Bainbridgeebf38d92020-02-10 10:46:31 -0800870 VCHECK=$(echo -e "$VHAVE\n$VC_VERSION" | sort -V | head -1)
871 if [ "$VCHECK" == "$VHAVE" ]; then
872 VMESSAGE="upgrade"
873 else
874 VMESSAGE="downgrade"
875 fi
David Bainbridged2811972019-12-14 01:14:09 +0000876 fi
877fi
878
David Bainbridge1ba64f12019-12-18 00:40:13 +0000879if [ $VOK -eq 0 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700880 espin $NOT_VERIFIED
David Bainbridged2811972019-12-14 01:14:09 +0000881 bspin - "Download and $VMESSAGE voltctl $DOWNLOAD"
David K. Bainbridgeebf38d92020-02-10 10:46:31 -0800882 (set -x; curl -o $GOPATH/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v$VC_VERSION/voltctl-$VC_VERSION-$HOSTOS-$HOSTARCH >>$LOG 2>&1) >>$LOG 2>&1
Test User08ebbd92019-07-03 17:15:39 +0000883 (set -x; chmod 755 $GOPATH/bin/voltctl >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700884 espin - $VERIFIED
885fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000886if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000887 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000888fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700889
890bspin "Verify command PATH"
Test Userba1e7e72019-07-10 22:27:54 +0000891export PATH=$GOPATH/bin:$PATH
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700892espin $VERIFIED
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700893
David Bainbridgee87067b2019-08-12 22:00:12 +0000894STIME=$(date +%s)
Test Userba1e7e72019-07-10 22:27:54 +0000895if [ "$DEPLOY_K8S" == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000896 HAVE=$(kind get clusters | grep -c voltha-$NAME)
Test Userba1e7e72019-07-10 22:27:54 +0000897 bspin "Verify Kubernetes/Kind Cluster"
898 sspin
899 if [ $HAVE -eq 0 ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000900 espin $NOT_VERIFIED
901 bspin - "Verify cluster configuration"
David Bainbridge0774b232019-08-02 06:37:19 +0000902 if [ ! -r ./$NAME-cluster.cfg ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000903 espin - $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000904 bspin - "Download cluster configuration: $TYPE-cluster.cfg to $NAME-cluster.cfg $DOWNLOAD"
David K. Bainbridgea00736b2020-01-08 14:33:17 -0800905 ERR_OUT=$(mktemp)
906 (set -x; curl --fail -o ./$NAME-cluster.cfg -sSL https://raw.githubusercontent.com/ciena/kind-voltha/$VK_RELEASE/$TYPE-cluster.cfg >>$LOG 2>>$ERR_OUT) >>$LOG 2>&1
907 if [ $? -ne 0 ]; then
908 espin - $THEX
909 echo -e "${RED}${BOLD}${ERROR}ERROR: $NAME-cluster.cfg${NORMAL}${RED} - $(cat $ERR_OUT)${NORMAL}"
910 echo "ERROR: $(cat $ERR_OUT)" >>$LOG
911 rm -rf $ERR_OUT ./$NAME-cluster.cfg
912 exit 1
913 fi
914 rm -rf $ERR_OUT
915 else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700916 espin - $VERIFIED
David K. Bainbridgea00736b2020-01-08 14:33:17 -0800917 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000918 kind create cluster --name voltha-$NAME --config $NAME-cluster.cfg
David Bainbridge491b1bd2019-07-11 17:53:11 +0000919 else
920 espin $VERIFIED
Test Userba1e7e72019-07-10 22:27:54 +0000921 fi
922
David Bainbridge0774b232019-08-02 06:37:19 +0000923 export KUBECONFIG="$(kind get kubeconfig-path --name="voltha-$NAME")"
Test Userba1e7e72019-07-10 22:27:54 +0000924 P="coredns-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000925 etcd-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000926 kindnet-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000927 kube-apiserver-voltha-$NAME-control-plane \
928 kube-controller-manager-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000929 kube-proxy-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000930 kube-scheduler-voltha-$NAME-control-plane"
Test Userba1e7e72019-07-10 22:27:54 +0000931
932 EXPECT=$(test "$TYPE" == "minimal" && echo "12" || echo "14")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000933 wait_for_pods - "kube-system" $EXPECT "includes" -1 "Waiting for system PODs to start" $P
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700934fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000935if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000936 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000937fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700938
David Bainbridgee87067b2019-08-12 22:00:12 +0000939STIME=$(date +%s)
David Bainbridge4c6289c2019-09-03 21:11:32 +0000940COUNT=$(count_pods "kube-system" ":Running:" "tiller-deploy-.*")
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700941bspin "Verify Helm"
Test Userba1e7e72019-07-10 22:27:54 +0000942if [ $COUNT -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700943 espin $NOT_VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000944 echo -e "Configuring Helm $GEAR"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700945 if [ "$INSTALL_HELM" == "no" ]; then
946 bspin - "Skip Helm/Tiller Initialization"
947 espin - $NO_ENTRY
948 else
949 bspin - "Initialize Helm"
950 (set -x; helm init --upgrade >>$LOG 2>&1) >>$LOG 2>&1
951 espin - $VERIFIED
David Bainbridge4f1b5562019-08-19 04:46:52 +0000952 wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700953 fi
Test Userb5712372019-07-03 21:52:17 +0000954 bspin - "Add Google Incubator repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700955 (set -x; helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
956 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700957
Test Userba1e7e72019-07-10 22:27:54 +0000958 # HACK (sort-of) - the config for tiller is about to be patched, which will
959 # cause the tiller pod to be recreated. This can sometimes cause a timing
960 # issue with the "wait_for_pods" call on tiller as it may incorrectly
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700961 # identify the running/ready tiller pod that is soon to be terminated as
Test Userba1e7e72019-07-10 22:27:54 +0000962 # what it is waiting for. To avoid this issue we do a clean scale down and
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700963 # scale up of the pod so the script controlls when it should be expecting
Test Userba1e7e72019-07-10 22:27:54 +0000964 # things
965 (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 -0700966
Test Userb5712372019-07-03 21:52:17 +0000967 bspin - "Add Google Stable repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700968 (set -x; helm repo add stable https://kubernetes-charts.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
969 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000970 bspin - "Add ONF repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700971 (set -x; helm repo add onf https://charts.opencord.org >>$LOG 2>&1) >>$LOG 2>&1
972 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000973 bspin - "Update Helm repository cache"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700974 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
975 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700976
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700977 # Create and k8s service account so that Helm can create pods
Test Userb5712372019-07-03 21:52:17 +0000978 bspin - "Create Tiller ServiceAccount"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700979 (set -x; kubectl create serviceaccount --namespace kube-system tiller >>$LOG 2>&1) >>$LOG 2>&1
980 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000981 bspin - "Create Tiller ClusterRoleBinding"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700982 (set -x; kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller >>$LOG 2>&1) >>$LOG 2>&1
983 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000984 bspin - "Update Tiller Manifest"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700985 (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 +0000986
987 # HACK (sort-of) - part to, spin it back up
988 (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 -0700989 espin - $VERIFIED
990else
991 espin $VERIFIED
David Bainbridge46505fb2019-10-01 21:13:20 +0000992 if [ "$UPDATE_HELM_REPOS" == "yes" ]; then
993 bspin - "Update Helm repository cache"
994 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
995 espin - $VERIFIED
996 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700997fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000998wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000999if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001000 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001001fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001002
David Bainbridgee87067b2019-08-12 22:00:12 +00001003STIME=$(date +%s)
David Bainbridge0774b232019-08-02 06:37:19 +00001004bspin "Verify Helm values file: $NAME-values.yaml"
1005if [ ! -r "./$NAME-values.yaml" ]; then
Test Userba1e7e72019-07-10 22:27:54 +00001006 espin $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +00001007 bspin - "Download Helm values file: $TYPE-values.yaml to $NAME-values.yaml $DOWNLOAD"
David K. Bainbridgea00736b2020-01-08 14:33:17 -08001008 ERR_OUT=$(mktemp)
1009 (set -x; curl --fail -o ./$NAME-values.yaml -sSL https://raw.githubusercontent.com/ciena/kind-voltha/$VK_RELEASE/$TYPE-values.yaml >>$LOG 2>$ERR_OUT) >>$LOG 2>&1
1010 if [ $? -ne 0 ]; then
1011 espin - $THEX
1012 echo -e "${RED}${BOLD}${ERROR}ERROR: $NAME-values.yaml${NORMAL}${RED} - $(cat $ERR_OUT)${NORMAL}"
1013 echo "ERROR: $(cat $ERR_OUT)" >>$LOG
1014 rm -rf $ERR_OUT ./$NAME-values.yaml
1015 exit 1
1016 fi
1017 rm -rf $ERR_OUT
Test Userba1e7e72019-07-10 22:27:54 +00001018 espin - $VERIFIED
1019else
1020 espin $VERIFIED
1021fi
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 Bainbridge99ac7a22019-08-31 02:26:43 +00001026STIME=$(date +%s)
1027bspin "Verify or download chart specific values files $DOWNLOAD"
1028VALUES_FILES="monkey-values.yaml"
David K. Bainbridgea00736b2020-01-08 14:33:17 -08001029ERR_OUT=$(mktemp)
David Bainbridge99ac7a22019-08-31 02:26:43 +00001030for i in $VALUES_FILES; do
1031 if [ ! -r ./$i ]; then
David K. Bainbridgea00736b2020-01-08 14:33:17 -08001032 (set -x; curl --fail -o ./$i -sSL https://raw.githubusercontent.com/ciena/kind-voltha/$VK_RELEASE/$i >>$LOG 2>$ERR_OUT) >>$LOG 2>&1
1033 if [ $? -ne 0 ]; then
1034 espin $THEX
1035 echo -e "${RED}${BOLD}${ERROR}ERROR: $i${NORMAL}${RED} - $(cat $ERR_OUT)${NORMAL}"
1036 echo "ERROR: $i - $(cat $ERR_OUT)" >>$LOG
1037 rm -rf $ERR_OUT ./$i
1038 exit 1
1039 fi
1040 rm -rf $ERR_OUT
David Bainbridge99ac7a22019-08-31 02:26:43 +00001041 fi
1042done
1043espin $VERIFIED
1044if [ "$WITH_TIMINGS" == "yes" ]; then
1045 printtime $(expr $(date +%s) - $STIME)
1046fi
1047
1048if [ "$WITH_CHAOS" == "yes" ]; then
1049 bspin "Verify or clone kube-monkey helm chart $DOWNLOAD"
1050 if [ -r ./kube-monkey ]; then
1051 espin $VERIFIED
1052 else
1053 espin $NOT_VERIFIED
1054 bspin - "GIT clone kube-monkey"
1055 (set -x; git clone https://github.com/asobti/kube-monkey kube-monkey >>$LOG 2>&1) >>$LOG 2>&1
1056 espin - $VERIFIED
1057 fi
1058fi
1059
Test Userba1e7e72019-07-10 22:27:54 +00001060if [ "$JUST_K8S" == "yes" ]; then
1061 echo "Environment deployed, not deploying VOLTHA artifacts as requested. Good bye."
1062 echo ""
1063 echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
1064 echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
1065 echo "tools required by VOLTHA in your command path. " | tee -a $LOG
1066 echo "" | tee -a $LOG
1067 echo -en $BOLD
1068 if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +00001069 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001070 fi
1071 echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
1072 echo -en $NORMAL
1073 echo "" | tee -a $LOG
1074 echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
1075 exit 0
1076fi
1077
David Bainbridgee87067b2019-08-12 22:00:12 +00001078STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001079bspin "Verify ETCD Operator $OLD_KEY"
Test User7d866122019-07-09 17:52:35 +00001080if [ $(helm list --deployed --short --namespace voltha "^etcd-operator\$" | wc -l) -ne 1 ]; then
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001081 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001082 helm_install - voltha etcd-operator stable/etcd-operator latest "Install ETCD Operator"
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001083else
1084 espin $VERIFIED
1085fi
Test User01ed0642019-07-03 20:17:06 +00001086EXPECT=$(test "$TYPE" == "minimal" && echo "1" || echo "3")
David Bainbridge4f1b5562019-08-19 04:46:52 +00001087wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for ETCD Operator to start" "etcd-operator-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001088if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001089 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001090fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001091
David Bainbridgee87067b2019-08-12 22:00:12 +00001092STIME=$(date +%s)
David Bainbridgeb270c202019-07-26 01:44:42 +00001093if [ $WITH_ONOS == "yes" ]; then
1094 bspin "Verify ONOS installed $BIRD"
1095 if [ $(helm list --deployed --short --namespace default "^onos\$" | wc -l) -ne 1 ]; then
1096 espin $NOT_VERIFIED
Andrea Campanella6afcb082019-12-18 16:51:30 -08001097 EXTRA_HELM_FLAGS="$SET_TAG $EXTRA_HELM_FLAGS" helm_install - default onos onf/onos $ONOS_CHART_VERSION "Install ONOS"
David Bainbridgeb270c202019-07-26 01:44:42 +00001098 else
1099 espin $VERIFIED
1100 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001101 wait_for_pods - "default" 1 "includes" -1 "Waiting for ONOS to start" "onos-.*"
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001102
David Bainbridgeb270c202019-07-26 01:44:42 +00001103 bspin - "Forward ONOS API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001104 kill_port_forward onos-ui
1105 port_forward default onos-ui $ONOS_API_PORT 8181
David Bainbridgeb270c202019-07-26 01:44:42 +00001106 espin - $VERIFIED
1107 bspin - "Forward ONOS SSH port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001108 kill_port_forward onos-ssh
1109 port_forward default onos-ssh $ONOS_SSH_PORT 8101
David Bainbridgeb270c202019-07-26 01:44:42 +00001110 espin - $VERIFIED
David Bainbridged31d6122019-08-13 19:37:59 +00001111 bspin - "Verify or download ONOS configuration support files $DOWNLOAD"
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001112 ONOS_FILES="olt-onos-enableExtraneousRules.json onos-aaa.json \
David Bainbridge90fd8e32019-08-21 23:32:47 +00001113 onos-dhcpl2relay.json onos-kafka.json onos-sadis-sample.json"
David Bainbridged31d6122019-08-13 19:37:59 +00001114 (set -x; mkdir -p ./onos-files >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgea00736b2020-01-08 14:33:17 -08001115 ERR_OUT=$(mktemp)
David Bainbridge2b19e832019-08-16 02:40:53 +00001116 for i in $ONOS_FILES; do
David Bainbridged31d6122019-08-13 19:37:59 +00001117 if [ ! -r ./onos-files/$i ]; then
David K. Bainbridgea00736b2020-01-08 14:33:17 -08001118 (set -x; curl --fail -o ./onos-files/$i -sSL https://raw.githubusercontent.com/ciena/kind-voltha/$VK_RELEASE/onos-files/$i >>$LOG 2>$ERR_OUT) >>$LOG 2>&1
1119 if [ $? -ne 0 ]; then
1120 espin - $THEX
1121 echo -e "${RED}${BOLD}${ERROR}ERROR: $i${NORMAL}${RED} - $(cat $ERR_OUT)${NORMAL}"
1122 echo "ERROR: $(cat $ERR_OUT)" >>$LOG
1123 rm -rf $ERR_OUT ./onos-files/$i
1124 exit 1
1125 fi
1126 rm -rf $ERR_OUT
David Bainbridged31d6122019-08-13 19:37:59 +00001127 fi
1128 done
Test Userba1e7e72019-07-10 22:27:54 +00001129 espin - $VERIFIED
David Bainbridge27790d62019-08-13 22:43:19 +00001130
1131 if [ $INSTALL_ONOS_APPS == "yes" ]; then
1132 bspin - "Installing custom ONOS applications"
1133 if [ -x onos-files/onos-apps -a $(ls -1 onos-files/onos-apps/*.oar 2>/dev/null | wc -l) -gt 0 ]; then
1134 for OAR in $(ls -1 onos-files/onos-apps/*.oar); do
1135 sspin - "Installing custom ONOS applications - $OAR$CEOL"
David Bainbridge2b19e832019-08-16 02:40:53 +00001136 override_onos_app $OAR
David Bainbridge27790d62019-08-13 22:43:19 +00001137 done
1138 espin - "$VERIFIED Installing custom ONOS applications$CEOL"
1139 else
1140 espin - "$NOT_VERIFIED Installing custom ONOS applications - None Found"
1141 fi
1142 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001143
Matteo Scandolo9a77a732020-01-09 14:24:12 -08001144 check_onos_app_active org.opencord.kafka
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001145 push_onos_config "file" "Push ONOS Kafka Configuration" "network/configuration/apps/org.opencord.kafka" "onos-files/onos-kafka.json"
Matteo Scandolo9a77a732020-01-09 14:24:12 -08001146 check_onos_app_active org.opencord.dhcpl2relay
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001147 push_onos_config "file" "Push ONOS DHCP L2 Relay Configuration" "network/configuration/apps/org.opencord.dhcpl2relay" "onos-files/onos-dhcpl2relay.json"
Matteo Scandolo9a77a732020-01-09 14:24:12 -08001148 check_onos_app_active org.opencord.olt
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001149 # FIXME use WITH_DHCP and WITH_EAPOL flags to configre OLT App
Hardik Windlassa7501fb2020-02-17 14:28:20 +00001150 # Default value for "enableEapol" is true in OLT App
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001151 if [ $WITH_EAPOL == "yes" ]; then
1152 push_onos_config "json" "Enable VOLTHA ONOS EAPOL provisioning" "configuration/org.opencord.olt.impl.OltFlowService" '{"enableEapol":true}'
Hardik Windlassa7501fb2020-02-17 14:28:20 +00001153 elif [ $WITH_EAPOL == "no" ]; then
1154 push_onos_config "json" "Disable VOLTHA ONOS EAPOL provisioning" "configuration/org.opencord.olt.impl.OltFlowService" '{"enableEapol":false}'
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001155 fi
Hardik Windlassa7501fb2020-02-17 14:28:20 +00001156 # Default value for "enableDhcpOnProvisioning" is false and for "enableDhcpV4" is true in OLT App
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001157 if [ $WITH_DHCP == "yes" ]; then
1158 push_onos_config "json" "Enable VOLTHA ONOS DHCP provisioning" "configuration/org.opencord.olt.impl.OltFlowService" '{"enableDhcpOnProvisioning":true,"enableDhcpV4":true}'
Hardik Windlassa7501fb2020-02-17 14:28:20 +00001159 elif [ $WITH_DHCP == "no" ]; then
1160 push_onos_config "json" "Disable VOLTHA ONOS DHCP provisioning" "configuration/org.opencord.olt.impl.OltFlowService" '{"enableDhcpOnProvisioning":false,"enableDhcpV4":false}'
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001161 fi
Hardik Windlassa7501fb2020-02-17 14:28:20 +00001162 # Default value for "enableIgmpOnProvisioning" is false in OLT App
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001163 if [ $WITH_IGMP == "yes" ]; then
1164 push_onos_config "json" "Enable VOLTHA ONOS IGMP provisioning" "configuration/org.opencord.olt.impl.OltFlowService" '{"enableIgmpOnProvisioning":true}'
Hardik Windlassa7501fb2020-02-17 14:28:20 +00001165 elif [ $WITH_IGMP == "no" ]; then
1166 push_onos_config "json" "Disable VOLTHA ONOS IGMP provisioning" "configuration/org.opencord.olt.impl.OltFlowService" '{"enableIgmpOnProvisioning":false}'
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001167 fi
1168 push_onos_config "file" "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 +00001169 if [ -f onos-files/onos-sadis.json ]; then
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001170 push_onos_config "file" "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "onos-files/onos-sadis.json"
David Bainbridge2b19e832019-08-16 02:40:53 +00001171 elif [ "$CONFIG_SADIS" == "yes" ]; then
David Bainbridge90fd8e32019-08-21 23:32:47 +00001172 SADIS_CFG=onos-files/onos-sadis-sample.json
Matteo Scandolo9a77a732020-01-09 14:24:12 -08001173 check_onos_app_active org.opencord.sadis
Matteo Scandolo78dfee02020-02-13 16:18:03 -08001174 push_onos_config "file" "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "$SADIS_CFG"
David Bainbridge2b19e832019-08-16 02:40:53 +00001175 fi
Test Userba1e7e72019-07-10 22:27:54 +00001176fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001177if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001178 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001179fi
Test Userba1e7e72019-07-10 22:27:54 +00001180
David Bainbridgee87067b2019-08-12 22:00:12 +00001181STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001182bspin "Verify VOLTHA installed $HIGH_VOLTAGE"
Test User7d866122019-07-09 17:52:35 +00001183if [ $(helm list --deployed --short --namespace voltha "^voltha\$" | wc -l) -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001184 espin $NOT_VERIFIED
David Bainbridge70c0ea82019-11-14 23:25:26 +00001185 if [ "$ONLY_ONE" == "yes" ]; then
1186 EXTRA_HELM_INSTALL_ARGS="--set therecanbeonlyone=true"=
1187 fi
David Bainbridge90fd8e32019-08-21 23:32:47 +00001188 helm_install - voltha voltha $VOLTHA_CHART $VOLTHA_CHART_VERSION "Install VOLTHA Core"
David Bainbridge70c0ea82019-11-14 23:25:26 +00001189 EXTRA_HELM_INSTALL_ARGS=
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001190else
1191 espin $VERIFIED
1192fi
Test Userba1e7e72019-07-10 22:27:54 +00001193
David Bainbridge90fd8e32019-08-21 23:32:47 +00001194VOLTHA="voltha-ofagent-.* \
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001195 ro-core.* \
1196 rw-core.* \
1197 voltha-api-server-.* \
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001198 voltha-etcd-cluster-.* \
1199 voltha-kafka-.* \
1200 voltha-zookeeper-.*"
David Bainbridge70c0ea82019-11-14 23:25:26 +00001201if [ "$ONLY_ONE" == "yes" ]; then
David Bainbridge1ba64f12019-12-18 00:40:13 +00001202 EXPECT=$(test "$TYPE" == "minimal" && echo "5" || echo "7")
David Bainbridge70c0ea82019-11-14 23:25:26 +00001203else
David Bainbridge1ba64f12019-12-18 00:40:13 +00001204 EXPECT=$(test "$TYPE" == "minimal" && echo "8" || echo "10")
David Bainbridge70c0ea82019-11-14 23:25:26 +00001205fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001206wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for VOLTHA Core to start" $VOLTHA
David Bainbridgee87067b2019-08-12 22:00:12 +00001207if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001208 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001209fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001210
David Bainbridge46505fb2019-10-01 21:13:20 +00001211if [ "$WITH_ADAPTERS" == "yes" ]; then
1212 STIME=$(date +%s)
1213 EXPECT=0
1214 echo -e "Verify Adapters $PLUG"
1215 if [ "$WITH_SIM_ADAPTERS" == "yes" ]; then
1216 bspin - "Verify Simulated Adapters installed"
1217 if [ $(helm list --deployed --short --namespace voltha "^sim\$" | wc -l) -ne 1 ]; then
1218 espin - $NOT_VERIFIED
1219 helm_install - voltha sim $VOLTHA_ADAPTER_SIM_CHART $VOLTHA_ADAPTER_SIM_CHART_VERSION "Install Simulated Adapters"
1220 else
1221 espin - $VERIFIED
1222 fi
1223 EXPECT=$(expr $EXPECT + 2)
1224 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001225
David Bainbridge46505fb2019-10-01 21:13:20 +00001226 if [ "$WITH_OPEN_ADAPTERS" == "yes" ]; then
1227 bspin - "Verify OpenOLT Adapter installed"
1228 if [ $(helm list --deployed --short --namespace voltha "^open-olt\$" | wc -l) -ne 1 ]; then
1229 espin - $NOT_VERIFIED
1230 helm_install - voltha open-olt $VOLTHA_ADAPTER_OPEN_OLT_CHART $VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION "Install OpenOLT Adapter"
1231 else
1232 espin - $VERIFIED
1233 fi
1234 bspin - "Verify OpenONU Adapter installed"
1235 if [ $(helm list --deployed --short --namespace voltha "^open-onu\$" | wc -l) -ne 1 ]; then
1236 espin - $NOT_VERIFIED
1237 helm_install - voltha open-onu $VOLTHA_ADAPTER_OPEN_ONU_CHART $VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION "Install OpenONU Adapter"
1238 else
1239 espin - $VERIFIED
1240 fi
1241 EXPECT=$(expr $EXPECT + 2)
1242 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001243
David Bainbridge46505fb2019-10-01 21:13:20 +00001244 ADAPTERS="adapter-.*"
1245 wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for adapters to start" $ADAPTERS
1246 if [ "$WITH_TIMINGS" == "yes" ]; then
1247 printtime $(expr $(date +%s) - $STIME)
1248 fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001249fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001250
Test User7d866122019-07-09 17:52:35 +00001251if [ $WITH_BBSIM == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001252 STIME=$(date +%s)
Test User7d866122019-07-09 17:52:35 +00001253 echo -e "Verify BBSIM $PLUG"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001254 bspin - "Verify BBSIM Installed"
Test User7d866122019-07-09 17:52:35 +00001255 if [ $(helm list --deployed --short --namespace voltha "^bbsim\$" | wc -l) -ne 1 ]; then
1256 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001257 helm_install - voltha bbsim $VOLTHA_BBSIM_CHART $VOLTHA_BBSIM_CHART_VERSION "Install BBSIM"
Test User7d866122019-07-09 17:52:35 +00001258 else
1259 espin - $VERIFIED
1260 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001261 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for BBSIM to start" "bbsim-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001262 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001263 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001264 fi
Test User7d866122019-07-09 17:52:35 +00001265fi
1266
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001267if [ $WITH_RADIUS == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001268 STIME=$(date +%s)
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001269 echo -e "Verify RADIUS $LOCK"
1270 bspin - "Verify RADIUS Installed"
1271 if [ $(helm list --deployed --short --namespace voltha "^radius\$" | wc -l) -ne 1 ]; then
1272 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001273 helm_install - voltha radius onf/freeradius latest "Install RADIUS"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001274 else
1275 espin - $VERIFIED
1276 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001277 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for RADIUS to start" "radius-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001278 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001279 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001280 fi
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001281fi
1282
David Bainbridgee87067b2019-08-12 22:00:12 +00001283STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001284bspin - "Forward VOLTHA API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001285kill_port_forward voltha-api
1286port_forward voltha voltha-api $VOLTHA_API_PORT 55555
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001287espin - $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +00001288bspin - "Forward VOLTHA ETCD port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001289kill_port_forward voltha-etcd-cluster-client
1290port_forward voltha voltha-etcd-cluster-client $VOLTHA_ETCD_PORT 2379
David Bainbridgeac7f8072019-08-01 22:15:33 +00001291espin - $VERIFIED
David K. Bainbridge00ecd382020-02-28 12:31:58 -08001292bspin - "Forward VOLTHA Kafka port $FORWARD"
1293kill_port_forward voltha-kafka
1294port_forward voltha voltha-kafka $VOLTHA_KAFKA_PORT 9092
1295espin - $VERIFIED
David Bainbridgee87067b2019-08-12 22:00:12 +00001296if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001297 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001298fi
Test User3d7ad8e2019-07-03 06:15:44 +00001299
David Bainbridgeb270c202019-07-26 01:44:42 +00001300if [ $WITH_ONOS == "yes" -a $WITH_RADIUS == "yes" ]; then
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001301 bspin "Configure ONOS RADIUS Connection $GEAR"
Andy Bavier658ebef2019-11-05 17:22:56 -07001302 (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 +00001303 espin $VERIFIED
1304fi
1305
David Bainbridge99ac7a22019-08-31 02:26:43 +00001306if [ "$WITH_CHAOS" == "yes" ]; then
1307 STIME=$(date +%s)
1308 echo -e "Verify kube-monkey $LOCK"
1309 bspin - "Verify kube-monkey Installed"
1310 if [ $(helm list --deployed --short --namespace kube-monkey "^monkey\$" | wc -l) -ne 1 ]; then
1311 espin - $NOT_VERIFIED
1312 helm_install - kube-monkey monkey ./kube-monkey/helm/kubemonkey latest "Install Chaos Monkey"
1313 else
1314 espin - $VERIFIED
1315 fi
1316 wait_for_pods - "kube-monkey" 1 "includes" -1 "Waiting for Chaos to start" "monkey-.*"
1317 if [ "$WITH_TIMINGS" == "yes" ]; then
1318 printtime $(expr $(date +%s) - $STIME)
1319 fi
1320fi
1321
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001322bspin "Create voltctl configuration file"
Test User3d7ad8e2019-07-03 06:15:44 +00001323(set -x; mkdir -p $HOME/.volt >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridge00ecd382020-02-28 12:31:58 -08001324(set -x; voltctl -a v3 -k localhost:$VOLTHA_KAFKA_PORT -s localhost:$VOLTHA_API_PORT config > $HOME/.volt/config-$NAME 2>>$LOG) >>$LOG 2>&1
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001325espin $VERIFIED
Test User08ebbd92019-07-03 17:15:39 +00001326
David Bainbridge0774b232019-08-02 06:37:19 +00001327if [ ! -f "$NAME-env.sh" ]; then
1328 touch $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001329fi
1330
David Bainbridge596f30d2019-07-30 17:07:59 +00001331for O in $ALL_OPTIONS; do
1332 VAL=$(eval echo \$$O)
David Bainbridge0774b232019-08-02 06:37:19 +00001333 if [ ! -z "$VAL" -a $(grep -c "^export $O=" $NAME-env.sh) -eq 0 ]; then
1334 echo "export $O=\"$(eval echo \$$O)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001335 fi
1336done
1337
David Bainbridge0774b232019-08-02 06:37:19 +00001338if [ $DEPLOY_K8S == "yes" -a $(grep -c "^export KUBECONFIG=" $NAME-env.sh) -eq 0 ]; then
1339 echo "export KUBECONFIG=\"$(./bin/kind get kubeconfig-path --name=voltha-$NAME)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001340fi
1341
David Bainbridge0774b232019-08-02 06:37:19 +00001342if [ $(grep -c "^export VOLTCONFIG=" $NAME-env.sh) -eq 0 ]; then
1343 echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001344fi
1345
David Bainbridge0774b232019-08-02 06:37:19 +00001346if [ $(grep -c "^export PATH=" $NAME-env.sh) -eq 0 ]; then
1347 echo "export PATH=\"$GOPATH/bin:\$PATH\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001348fi
1349
Test User7d866122019-07-09 17:52:35 +00001350echo ""
Test User08ebbd92019-07-03 17:15:39 +00001351echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
1352echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
1353echo "tools required by VOLTHA in your command path. " | tee -a $LOG
1354echo "" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001355echo -en $BOLD
Test Userba1e7e72019-07-10 22:27:54 +00001356if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +00001357 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001358fi
David Bainbridge0774b232019-08-02 06:37:19 +00001359echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001360echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001361echo -en $NORMAL
Test User08ebbd92019-07-03 17:15:39 +00001362echo "" | tee -a $LOG
1363echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
1364
David Bainbridge712afb82019-08-14 19:55:58 +00001365if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridgef858a022019-08-14 21:25:11 +00001366 echo -e "$CLOCK ${BOLD}TOTAL: $(duration $(expr $(date +%s) - $TOTAL_START_TIME))${NORMAL}"
David Bainbridge712afb82019-08-14 19:55:58 +00001367fi