blob: 896949ba1dd6987e6bb2a1151c887ba2b3153317 [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 Bainbridge70c0ea82019-11-14 23:25:26 +000078ONLY_ONE=${ONLY_ONE:-no}
David Bainbridge2b19e832019-08-16 02:40:53 +000079CONFIG_SADIS=${CONFIG_SADIS:-no}
David Bainbridge27790d62019-08-13 22:43:19 +000080INSTALL_ONOS_APPS=${INSTALL_ONOS_APPS:-no}
Test Userba1e7e72019-07-10 22:27:54 +000081JUST_K8S=${JUST_K8S:-no}
82DEPLOY_K8S=${DEPLOY_K8S:-yes}
David K. Bainbridge0e89cb92019-07-17 11:30:10 -070083INSTALL_KUBECTL=${INSTALL_KUBECTL:-yes}
84INSTALL_HELM=${INSTALL_HELM:-yes}
David Bainbridge46505fb2019-10-01 21:13:20 +000085UPDATE_HELM_REPOS=${UPDATE_HELM_REPOS:-yes}
David Bainbridge4f1b5562019-08-19 04:46:52 +000086WAIT_ON_DOWN=${WAIT_ON_DOWN:-no}
David Bainbridge5b7b96b2019-07-25 20:29:13 +000087VOLTHA_LOG_LEVEL=${VOLTHA_LOG_LEVEL:-WARN}
David Bainbridge90fd8e32019-08-21 23:32:47 +000088VOLTHA_CHART=${VOLTHA_CHART:-onf/voltha}
89VOLTHA_CHART_VERSION=${VOLTHA_CHART_VERSION:-latest}
90VOLTHA_BBSIM_CHART=${VOLTHA_BBSIM_CHART:-onf/bbsim}
Matteo Scandolodcd29f52019-10-07 15:42:42 -070091VOLTHA_BBSIM_CHART_VERSION=${VOLTHA_BBSIM_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000092VOLTHA_ADAPTER_SIM_CHART=${VOLTHA_ADAPTER_SIM_CHART:-onf/voltha-adapter-simulated}
David Bainbridge90fd8e32019-08-21 23:32:47 +000093VOLTHA_ADAPTER_SIM_CHART_VERSION=${VOLTHA_ADAPTER_SIM_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000094VOLTHA_ADAPTER_OPEN_OLT_CHART=${VOLTHA_ADAPTER_OPEN_OLT_CHART:-onf/voltha-adapter-openolt}
David Bainbridge90fd8e32019-08-21 23:32:47 +000095VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION=${VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION:-latest}
David Bainbridgee10f6d52019-07-25 00:28:13 +000096VOLTHA_ADAPTER_OPEN_ONU_CHART=${VOLTHA_ADAPTER_OPEN_ONU_CHART:-onf/voltha-adapter-openonu}
David Bainbridge90fd8e32019-08-21 23:32:47 +000097VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION=${VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION:-latest}
David Bainbridge70c0ea82019-11-14 23:25:26 +000098EXTRA_HELM_INSTALL_ARGS=
Test Userba1e7e72019-07-10 22:27:54 +000099
100HAVE_GO=$(which go >/dev/null 2>&1 && echo "yes" || echo "no")
101HOSTOS=$(uname -s | tr "[:upper:]" "[:lower:"])
102HOSTARCH=$(uname -m | tr "[:upper:]" "[:lower:"])
103if [ $HOSTARCH == "x86_64" ]; then
104 HOSTARCH="amd64"
105fi
Test User7d866122019-07-09 17:52:35 +0000106
107# Verify TYPE setting
108if [ $(echo ":minimal:full:" | grep -ic ":$TYPE:") -eq 0 ]; then
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700109 >&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 +0000110 exit 1
111fi
112
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000113# Used to verify configuration values are set to "yes" or "no" value or convert
114# equivalents to "yes" or "no"
115function verify_yes_no() {
116 local VAR=$1
117 local VAL=$(eval echo \$$VAR)
118 if [ $(echo ":y:yes:true:n:no:false:1:0:" | grep -ic ":$VAL:") -eq 0 ]; then
119 >&2 echo -e "${RED}${BOLD}${ERROR}ERROR:${NORMAL}${RED} Invalid '$VAR' value of '$VAL'. Should be 'yes' or 'no'${NORMAL}"
120 echo "INVALID"
121 return 1
122 fi
123 if [ $(echo ":y:yes:true:1:" | grep -ic ":$VAL:") -eq 1 ]; then
124 echo "yes"
125 else
126 echo "no"
127 fi
128 return 0
129}
Test User7d866122019-07-09 17:52:35 +0000130
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000131ALL_YES_NO="\
132 WITH_TIMINGS \
133 WITH_BBSIM \
134 WITH_RADIUS \
135 WITH_ONOS \
David Bainbridge99ac7a22019-08-31 02:26:43 +0000136 WITH_CHAOS \
David Bainbridge46505fb2019-10-01 21:13:20 +0000137 WITH_ADAPTERS \
138 WITH_SIM_ADAPTERS \
139 WITH_OPEN_ADAPTERS \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000140 CONFIG_SADIS \
141 JUST_K8S \
142 DEPLOY_K8S \
143 INSTALL_ONOS_APPS \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000144 INSTALL_KUBECTL \
145 INSTALL_HELM \
David Bainbridge46505fb2019-10-01 21:13:20 +0000146 UPDATE_HELM_REPOS \
David Bainbridge4f1b5562019-08-19 04:46:52 +0000147 WAIT_ON_DOWN \
David Bainbridge70c0ea82019-11-14 23:25:26 +0000148 ONLY_ONE \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000149 "
David Bainbridge5b7b96b2019-07-25 20:29:13 +0000150
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000151ALL_OPTIONS="\
152 NAME \
153 TYPE \
154 $ALL_YES_NO \
155 VOLTHA_LOG_LEVEL \
156 VOLTHA_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000157 VOLTHA_CHART_VERSION \
158 VOLTHA_BBSIM_CHART \
159 VOLTHA_BBSIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000160 VOLTHA_ADAPTER_SIM_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000161 VOLTHA_ADAPTER_SIM_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000162 VOLTHA_ADAPTER_OPEN_OLT_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000163 VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000164 VOLTHA_ADAPTER_OPEN_ONU_CHART \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000165 VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION \
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000166 ONOS_API_PORT \
167 ONOS_SSH_PORT \
168 VOLTHA_API_PORT \
169 VOLTHA_SSH_PORT \
170 VOLTHA_ETCD_PORT \
171 "
David Bainbridge01294952019-07-30 19:33:45 +0000172
David Bainbridge2a0b8a42019-08-16 17:39:29 +0000173# Iterate over yes/no configuration options and validate
174for VAR in $ALL_YES_NO; do
175 eval $VAR=$(verify_yes_no $VAR)
176 if [ "$(eval echo \$$VAR)" == "INVALID" ]; then
177 exit 1;
178 fi
179done
David Bainbridgeb270c202019-07-26 01:44:42 +0000180
David Bainbridge0774b232019-08-02 06:37:19 +0000181mkdir -p .voltha
182touch .voltha/ports
183HAVE=$(grep $NAME .voltha/ports)
184if [ "$HAVE X" == " X" ]; then
185 # Find free port prefix
186 START=81
187 while true; do
188 if [ $(grep -c $START .voltha/ports) -eq 0 ]; then
189 break
190 fi
191 START=$(expr $START + 1)
192 done
193 DELTA=$(expr $START - 81)
David Bainbridgea2595422019-10-22 03:54:28 +0000194 ONOS_API_PORT=${ONOS_API_PORT:-${START}81}
195 ONOS_SSH_PORT=${ONOS_SSH_PORT:-${START}01}
196 VOLTHA_API_PORT=${VOLTHA_API_PORT:-5$(expr 55 + $DELTA)55}
197 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(expr 50 + $DELTA)22}
198 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(expr 23 + $DELTA)79}
Test User01ed0642019-07-03 20:17:06 +0000199else
David Bainbridge0774b232019-08-02 06:37:19 +0000200 VALUES=$(echo $HAVE | sed -e 's/\s//g' | cut -d= -f2)
David Bainbridgea2595422019-10-22 03:54:28 +0000201 ONOS_API_PORT=${ONOS_API_PORT:-$(echo $VALUES | cut -d, -f1)}
202 ONOS_SSH_PORT=${ONOS_SSH_PORT:-$(echo $VALUES | cut -d, -f2)}
203 VOLTHA_API_PORT=${VOLTHA_API_PORT:-$(echo $VALUES | cut -d, -f3)}
204 VOLTHA_SSH_PORT=${VOLTHA_SSH_PORT:-$(echo $VALUES | cut -d, -f4)}
205 VOLTHA_ETCD_PORT=${VOLTHA_ETCD_PORT:-$(echo $VALUES | cut -d, -f5)}
Test User01ed0642019-07-03 20:17:06 +0000206fi
207
David Bainbridge0774b232019-08-02 06:37:19 +0000208PORTTMP=$(mktemp -u)
209cat .voltha/ports | grep -v $NAME > $PORTTMP
210echo "$NAME=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $PORTTMP
211cp $PORTTMP .voltha/ports
212rm -f $PORTTMP
213
David Bainbridge27790d62019-08-13 22:43:19 +0000214export ONOS_API_PORT ONOS_SSH_PORT
David Bainbridge01294952019-07-30 19:33:45 +0000215
Test Userd87942b2019-07-03 07:20:24 +0000216IDX=1
David Bainbridgee87067b2019-08-12 22:00:12 +0000217CLOCK="TIME:"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000218SPIN_PARTS=
219NOT_VERIFIED=
David Bainbridgef858a022019-08-14 21:25:11 +0000220THEX=
221BUILD=
222CROSS=
223ENTER=
David Bainbridge38dc1e82019-08-12 15:18:45 +0000224VERIFIED=
225HELM=
226OLD_KEY=
227BIRD=
228HIGH_VOLTAGE=
229PLUG=
230RESTART=
231FORWARD=
232INSTALL=
233STOP=
234GO=
235DOWNLOAD=
236GEAR=
237NO_ENTRY=
238LOCK=
239
240if [ $FANCY -eq 1 ]; then
241 SPIN_PARTS="\
242 \xe2\xa2\x8e\xe2\xa1\xb0 \
243 \xe2\xa2\x8e\xe2\xa1\xa1 \
244 \xe2\xa2\x8e\xe2\xa1\x91 \
245 \xe2\xa2\x8e\xe2\xa0\xb1 \
246 \xe2\xa0\x8e\xe2\xa1\xb1 \
247 \xe2\xa2\x8a\xe2\xa1\xb1 \
248 \xe2\xa2\x8c\xe2\xa1\xb1 \
249 \xe2\xa2\x86\xe2\xa1\xb1 \
250 "
David Bainbridgee87067b2019-08-12 22:00:12 +0000251 CLOCK="\xe2\x8f\xb1"
David Bainbridgef858a022019-08-14 21:25:11 +0000252 THEX="${RED}${BOLD}\xe2\x9c\x97\x20${NORMAL}"
253 ENTER="${YELLOW}${BOLD}\xe2\x8e\x86${NORMAL}"
254 CROSS="${YELLOW}${BOLD}\xe2\x9c\x9a${NORMAL}"
255 BUILD="${YELLOW}${BOLD}\xf0\x9f\x8f\x97${NORMAL}"
256 NOT_VERIFIED="$BUILD"
257 VERIFIED="${GREEN}${BOLD}\xe2\x9c\x93\x20${NORMAL}"
258 HELM="${BLUE}${BOLD}\xE2\x8E\x88${NORMAL}"
David Bainbridge38dc1e82019-08-12 15:18:45 +0000259 OLD_KEY="\xF0\x9F\x97\x9D"
260 BIRD="\xF0\x9F\x90\xA6"
261 HIGH_VOLTAGE="\xE2\x9A\xA1"
262 PLUG="\xF0\x9F\xa7\xa9"
263 RESTART="\xf0\x9f\x94\x84"
264 FORWARD="\xE2\x87\xA8"
265 INSTALL="\xF0\x9F\x8F\x97"
266 STOP="\xf0\x9f\x9b\x91"
267 GO="\xf0\x9f\x9a\x80"
268 DOWNLOAD="\xf0\x9f\x93\xa5"
269 GEAR="\xe2\x9a\x99"
270 NO_ENTRY="\xe2\x9b\x94"
271 LOCK="\xf0\x9f\x94\x92"
272fi
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700273
David Bainbridge712afb82019-08-14 19:55:58 +0000274duration() {
David Bainbridgee87067b2019-08-12 22:00:12 +0000275 local h=$(expr $1 / 3600)
276 local m=$(expr $1 % 3600 / 60)
277 local s=$(expr $1 % 60)
278 local t=""
279
280 if [ $h -gt 0 ]; then
281 t="$t${h}h"
282 fi
283 if [ $m -gt 0 ]; then
284 t="$t${m}m"
285 fi
David Bainbridge712afb82019-08-14 19:55:58 +0000286 echo "$t${s}s"
287}
288
289printtime() {
290 local INDENT=
291 if [ "$1" == "-" ]; then
292 INDENT=" "
293 shift
294 fi
295 echo -e "$INDENT $CLOCK $(duration $1)"
David Bainbridgee87067b2019-08-12 22:00:12 +0000296}
297
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700298bspin() {
Test Userd87942b2019-07-03 07:20:24 +0000299 IDX=1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700300 local INDENT=
301 if [ "$1" == "-" ]; then
302 INDENT=" "
303 shift
304 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000305 if [ $FANCY -eq 0 ]; then
306 LINE=$(echo $* | sed -e 's/[\s+-]//g')
307 if [ "$LINE X" == " X" ]; then
308 return
309 fi
310 echo -e "$CIVIS$INDENT$*"
311 else
312 echo -en "$CIVIS$INDENT $*"
313 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700314}
315
316sspin() {
317 local INDENT=
318 if [ "$1" == "-" ]; then
319 INDENT=" "
320 shift
321 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000322 if [ $FANCY -eq 0 ]; then
323 LINE=$(echo $* | sed -e 's/[\s+-]//g')
324 if [ "$LINE X" == " X" ]; then
325 return
326 fi
327 echo -e "$INDENT$*"
328 else
329 C=$(echo $SPIN_PARTS | cut '-d ' -f $IDX)
330 echo -en "\r$INDENT$C $*"
331 IDX=$(expr $IDX + 1)
332 if [ $IDX -gt 8 ]; then
333 IDX=1
334 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700335 fi
336}
337
338espin() {
339 local INDENT=
340 if [ "$1" == "-" ]; then
341 INDENT=" "
342 shift
343 fi
David Bainbridge38dc1e82019-08-12 15:18:45 +0000344 if [ $FANCY -eq 0 ]; then
345 LINE=$(echo $* | sed -e 's/[\s+-]//g')
346 if [ "$LINE X" == " X" ]; then
347 return
348 fi
349 echo -e "$INDENT$*"
350 else
351 echo -e "\r$INDENT$*$CNORM"
352 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700353}
354
David Bainbridgeac7f8072019-08-01 22:15:33 +0000355if [ "$1" == "get" -a "$2" == "voltconfig" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000356 echo "$HOME/.volt/config-$NAME"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000357 exit
358fi
359
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700360if [ $# -ne 1 -o $(echo ":up:down:dump:" | grep -c ":$1:") -ne 1 ]; then
David Bainbridgeac7f8072019-08-01 22:15:33 +0000361 >&2 echo "What wouild you like to do today:"
362 >&2 echo " up - bring up voltha"
363 >&2 echo " down - tear down voltha"
364 >&2 echo " dump - create a debug dump of running system"
365 exit 1
366fi
367
David Bainbridge4f1b5562019-08-19 04:46:52 +0000368push_onos_config() {
369 local MSG=$1
370 local RESOURCE=$2
371 local DATA=$3
372
373 bspin - "$MSG $GEAR"
374 while true; do
375 (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
376 if [ $? -eq 0 ]; then
377 break
378 fi
379 sleep .2
380 sspin -
381 done
382 espin - $VERIFIED
383}
384
385override_onos_app() {
386 local APP=$1
387 local NAME=$(basename $APP | sed -e 's/^[0-9][0-9]*-//g' -e 's/-.*$//g')
388 while true; do
389 sspin -
390 # Attempt to delete old version (if it exists)
391 (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
392 sspin -
393 if [ $? -ne 0 ]; then
394 continue
395 fi
396 (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
397 if [ $? -eq 0 ]; then
398 break
399 fi
400 sleep .2
401 done
402}
403
404activate_onos_app() {
405 local MSG="$1"
406 local APP=$2
407
408 bspin - "$MSG $GO"
409 while true; do
410 sspin -
411 (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
412 if [ $? -eq 0 ]; then
413 break
414 fi
415 sleep .2
416 done
417 espin - "$VERIFIED"
418}
419
420count_pods() {
421 local NAMESPACE=$1; shift
422 if [ "$NAMESPACE" == "all-namespaces" ]; then
423 NAMESPACE="--all-namespaces"
424 else
425 NAMESPACE="-n $NAMESPACE"
426 fi
427 echo "$NAMESPACE" > /tmp/t
428 local STATES=$1; shift
429 echo "$STATES" >> /tmp/t
430 local PODS=$(kubectl get $NAMESPACE pod -o go-template="{{range .items}}{{.metadata.name}}/{{.status.phase}}/_{{range .status.containerStatuses}}{{.ready}}_{{end}} {{end}}")
431 local COUNT=0
432 local PATTERNS="$*"
433 for POD in $PODS; do
434 local NAME=$(echo $POD | cut -d/ -f 1)
435 local STATE=$(echo $POD | cut -d/ -f 2)
436 local CONTAINERS=$(echo $POD | cut -d/ -f 3 | sed -e 's/_/ /g')
437 if [ "$STATES" == "*" -o $(echo "$STATES" | grep -c ":$STATE:") -ne 0 ]; then
438 echo "IN WITH $POD" >> /tmp/t
439 local TOTAL=$(echo $CONTAINERS | wc -w)
440 local FOUND=$(echo $CONTAINERS | grep -o true | wc -l)
441 if [ $TOTAL -eq $FOUND ]; then
442 for PATTERN in $PATTERNS; do
443 echo "TEST $PATTERN AGAINST $NAME" >> /tmp/t
444 if [[ $NAME =~ $PATTERN ]]; then
445 echo "COUNT $NAME" >> /tmp/t
446 COUNT=$(expr $COUNT + 1)
447 break
448 fi
449 done
450 fi
451 fi
452 done
453 echo $COUNT >> /tmp/t
454 echo $COUNT
455}
456
457wait_for_pods() {
458 local INDENT=
459 if [ "$1" == "-" ]; then
460 INDENT=$1; shift
461 fi
462 local NAMESPACE=$1; shift
463 local EXPECT=$1; shift
464 local TYPE=$1; shift
465 local RETRY=$1; shift
466 local MESSAGE=$1; shift
467 local PATTERNS=$*
David Bainbridge99ac7a22019-08-31 02:26:43 +0000468 local STATES=":Running:"
469 if [ "$TYPE" == "not" ]; then
470 STATES="*"
471 fi
472 local HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000473 local ALL=$HAVE
474 if [ "$TYPE" == "only" ]; then
475 ALL=$(count_pods "all-namespaces" "*" ".*")
476 fi
477 COUNT=$(expr 300 / 15)
478 bspin $INDENT $MESSAGE
479 sspin $INDENT
480 if [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; then
481 while [ $HAVE -ne $EXPECT -o $ALL -ne $HAVE ]; do
482 sspin $INDENT
483 COUNT=$(expr $COUNT - 1)
484 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000485 HAVE=$(count_pods $NAMESPACE "$STATES" $PATTERNS)
David Bainbridge4f1b5562019-08-19 04:46:52 +0000486 ALL=$HAVE
487 if [ "$TYPE" == "only" ]; then
488 ALL=$(count_pods "all-namespaces" "*" ".*")
489 fi
490 COUNT=$(expr 300 / 15)
491 fi
492 sleep .15
493 done
494 fi
495 espin $INDENT $VERIFIED
496 if [ $HAVE -ne $EXPECT ]; then
497 return 1
498 fi
499 return 0
500}
501
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800502port_forward() {
503 local NS=$1
504 local SVC=$2
505 local FROM_PORT=$3
506 local TO_PORT=$4
507 local TAG=$SVC-$NAME
508
509 (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
510}
511
512kill_port_forward() {
513 local TAG=$1-$NAME
David Bainbridgec6871d22019-11-13 17:10:31 +0000514 local P_IDS=$(ps e -ww -A | grep "_TAG=$TAG" | grep -v grep | awk '{print $1}')
David Bainbridgebcf235b2019-11-12 21:33:58 +0000515 local PARENTS=
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800516 local KIDS=
David Bainbridgec6871d22019-11-13 17:10:31 +0000517 local UNKNOWN=
518 if [ ! -z "$P_IDS" ]; then
519 for P_ID in $P_IDS; do
520 local PP_ID=$(ps -o ppid $P_ID | tail -n +2)
521 if [ ! -z "$PP_ID" ]; then
522 if [ $PP_ID -eq 1 ]; then
523 PARENTS="$PARENTS $P_ID"
524 else
525 KIDS="$KIDS $P_ID"
526 fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800527 else
David Bainbridgec6871d22019-11-13 17:10:31 +0000528 UNKNOWN="$UNKNOWN $P_ID"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800529 fi
530 done
David Bainbridgec6871d22019-11-13 17:10:31 +0000531 (set -x; kill -9 $PARENTS $KIDS $UNKNOWN >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800532 fi
533}
534
David Bainbridgeac7f8072019-08-01 22:15:33 +0000535if [ "$1" == "down" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000536 echo "Tearing down voltha cluster $NAME"
537 LOG="down-$NAME.log"
538 echo $(date -u +"%Y%m%dT%H%M%SZ") >$LOG
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800539 bspin "Remove port-forwards: onos-ui-$NAME"
540 kill_port_forward onos-ui
541 sspin "Remove port-forwards: onos-ssh-$NAME$CEOL"
542 kill_port_forward onos-ssh
543 sspin "Remove port-forwards: voltha-api-$NAME$CEOL"
544 kill_port_forward voltha-api
David Bainbridge213bbe02019-11-13 17:53:03 +0000545 sspin "Remove port-forwards: voltha-cli-$NAME$CEOL"
546 kill_port_forward voltha-cli
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800547 sspin "Remove port-forwards: voltha-etcd-$NAME$CEOL"
548 kill_port_forward voltha-etcd-cluster-client
549 espin "$VERIFIED Remove port-forwards$CEOL"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000550 if [ $DEPLOY_K8S == "yes" ]; then
551 if [ -x ./bin/kind ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000552 bspin "Delete Kubernetes Kind Cluster"
553 (set -x; ./bin/kind delete cluster --name voltha-$NAME >>$LOG 2>&1) >>$LOG 2>&1
554 espin $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +0000555 else
David Bainbridge0774b232019-08-02 06:37:19 +0000556 espin "$NO_ENTRY Delete Kubernetes Kind Cluster: kind command not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000557 fi
558 else
559 EXISTS=$(helm list -q)
560 EXPECT="etcd-operator onos open-olt open-onu sim voltha bbsim radius"
David Bainbridge0774b232019-08-02 06:37:19 +0000561 bspin "Remove Helm Deployments"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000562 for i in $EXISTS; do
563 if [ $(echo $EXPECT | grep -c $i) -eq 1 ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000564 sspin "Remove Helm Deployments: $i$CEOL"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800565 (set -x; ./bin/helm delete --no-hooks --purge $i >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000566 fi
567 done
David Bainbridge0774b232019-08-02 06:37:19 +0000568 espin "$VERIFIED Remove Helm Deployments$CEOL"
David Bainbridge4f1b5562019-08-19 04:46:52 +0000569 if [ "$WAIT_ON_DOWN" == "yes" ]; then
570 # There should only be 13 or 15 PODs in the kube-system name
571 # space and no other PODs
David Bainbridge4f1b5562019-08-19 04:46:52 +0000572 PODS="coredns-.* \
573 etcd-voltha-$NAME-control-plane \
574 kindnet-.* \
575 kube-apiserver-voltha-$NAME-control-plane \
576 kube-controller-manager-voltha-$NAME-control-plane \
577 kube-proxy-.* \
578 kube-scheduler-voltha-$NAME-control-plane \
579 tiller-deploy-.*"
580 EXPECT=$(test "$TYPE" == "minimal" && echo "13" || echo "15")
David Bainbridge99ac7a22019-08-31 02:26:43 +0000581 PODS="adapter-.* \
582 bbsim.* \
583 etcd-operator.* \
584 radius.* \
585 voltha-.*"
586 EXPECT=0
587
588 wait_for_pods "voltha" $EXPECT "not" -1 "Waiting for VOLTHA PODs to terminate" $PODS
David Bainbridge4f1b5562019-08-19 04:46:52 +0000589 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000590 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700591 exit
David Bainbridgeac7f8072019-08-01 22:15:33 +0000592fi
593
594if [ "$1" == "dump" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000595 LOG="dump-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000596 TS=$(date -u +"%Y%m%dT%H%M%SZ")
David Bainbridge76514a02019-10-08 01:50:35 +0000597 if [ ! -z "$DUMP_FROM" ]; then
598 TS=$(echo $DUMP_FROM | sed -e 's/[:-]//g')
599 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000600 WORK=$(mktemp -u -d)
David Bainbridge0774b232019-08-02 06:37:19 +0000601 DATA=$WORK/voltha-debug-dump-$NAME-$TS
David Bainbridgeac7f8072019-08-01 22:15:33 +0000602 mkdir -p $DATA
603 echo $TS > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000604 echo -e "Capturing debug dump to voltha-debug-dump-$NAME-$TS.tgz"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000605 bspin - "Copy install log"
David Bainbridge0774b232019-08-02 06:37:19 +0000606 if [ -f install-$NAME.log ]; then
607 (set -x; cp install-$NAME.log $DATA/install-$NAME.log) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000608 espin - $VERIFIED
609 else
David Bainbridge0774b232019-08-02 06:37:19 +0000610 espin - "$NO_ENTRY Copy install log: install-$NAME.log not found"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000611 fi
612 bspin - "Dumping Kubernetes PODs"
613 (set -x; kubectl get --all-namespaces pods >> $DATA/all-pods.txt 2>&1) >>$LOG 2>&1
614 espin - $VERIFIED
615 bspin - "Dumping Kubernetes SERVICEs"
616 (set -x; kubectl get --all-namespaces svc >> $DATA/all-services.txt 2>&1) >>$LOG 2>&1
617 espin - $VERIFIED
618 bspin - "Dumping Kubernetes EVENTs"
619 (set -x; kubectl get --all-namespaces events >> $DATA/all-events.txt 2>&1) >>$LOG 2>&1
620 espin - $VERIFIED
621 bspin - "Dumping VOLTHA POD details"
Matteo Scandolodcd29f52019-10-07 15:42:42 -0700622 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 +0000623 SINCE=
624 if [ ! -z "$DUMP_FROM" ]; then
625 SINCE="--since-time=$DUMP_FROM"
626 fi
David Bainbridgeac7f8072019-08-01 22:15:33 +0000627 for POD in $PODS; do
David Bainbridge1f0655a2019-10-01 22:08:48 +0000628 NS=$(echo $POD | cut -d: -f1)
629 POD=$(echo $POD | cut -d: -f2)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000630 sspin - "Dumping VOLTHA POD details: $POD$CEOL"
631 mkdir -p $DATA/$POD
David Bainbridge1f0655a2019-10-01 22:08:48 +0000632 (set -x; kubectl describe -n $NS $POD >> $DATA/$POD/describe.txt 2>&1) >>$LOG 2>&1
David Bainbridgeac7f8072019-08-01 22:15:33 +0000633 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000634 (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 +0000635 sspin - "Dumping VOLTHA POD details: $POD"
David Bainbridgecfd7ca12019-10-06 03:31:41 +0000636 (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 +0000637 sspin - "Dumping VOLTHA POD details: $POD"
638 done
639 espin - "$VERIFIED Dumping VOLTHA POD details$CEOL"
640 bspin - "Dumping ETCD"
641 if [ "$(which etcdctl) X" != " X" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000642 (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 +0000643 espin - $VERIFIED
644 else
645 espin - "$NO_ENTRY Dumping ETCD: etcdctl command not available"
646 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000647 bspin - "Creating compressed TAR: voltha-debug-dump-$NAME-$TS.tgz"
648 (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 +0000649 espin - $VERIFIED
650 bspin - "Cleanup"
651 (set -x; rm -rf $WORK) >>$LOG 2>&1
652 espin - $VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000653 bspin - "$(ls -l voltha-debug-dump-$NAME-$TS.tgz)"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000654 espin - $VERIFIED
655 exit
656fi
657
David Bainbridge0774b232019-08-02 06:37:19 +0000658LOG="install-$NAME.log"
David Bainbridgeac7f8072019-08-01 22:15:33 +0000659date > $LOG
David Bainbridge0774b232019-08-02 06:37:19 +0000660echo "PORTS=$ONOS_API_PORT,$ONOS_SSH_PORT,$VOLTHA_API_PORT,$VOLTHA_SSH_PORT,$VOLTHA_ETCD_PORT" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000661
662# Output install options to log
663echo "OPTIONS" >> $LOG
David Bainbridgeac7f8072019-08-01 22:15:33 +0000664for O in $ALL_OPTIONS; do
665 VAL=$(eval echo \$$O)
David Bainbridgeac7f8072019-08-01 22:15:33 +0000666 if [ ! -z "$VAL" ]; then
667 printf " %-30s = %s\n" $O $VAL >> $LOG
668 fi
669done
670
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700671helm_install() {
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700672 local INDENT=
673 if [ "$1" == "-" ]; then
674 INDENT=$1; shift
675 fi
676 local NAMESPACE=$1; shift
David Bainbridge0774b232019-08-02 06:37:19 +0000677 local INAME=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700678 local CHART=$1; shift
David Bainbridge90fd8e32019-08-21 23:32:47 +0000679 local CHART_VERSION=$1; shift
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700680 local MESSAGE=$*
681
David Bainbridge90fd8e32019-08-21 23:32:47 +0000682 if [ "$CHART_VERSION X" != " X" -a "$CHART_VERSION" != "latest" ]; then
683 CHART_VERSION="--version $CHART_VERSION"
684 else
685 CHART_VERSION=
686 fi
687
David Bainbridge99ac7a22019-08-31 02:26:43 +0000688 local CHART_ARGS=
689 if [ -r "${INAME}-values.yaml" ]; then
690 CHART_ARGS="-f ${INAME}-values.yaml"
691 fi
692
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700693 COUNT=$(expr 300 / 15)
694 bspin $INDENT $MESSAGE
David Bainbridge70c0ea82019-11-14 23:25:26 +0000695 (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 -0700696 SUCCESS=$?
697 while [ $SUCCESS -ne 0 ]; do
698 sspin $INDENT
699 COUNT=$(expr $COUNT - 1)
700 if [ $COUNT -eq 0 ]; then
David Bainbridge99ac7a22019-08-31 02:26:43 +0000701 (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 -0700702 COUNT=$(expr 300 / 15)
703 fi
704 sleep .15
705 done
706 espin $INDENT $VERIFIED
707}
708
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700709echo "INSTALL TYPE: $TYPE" >> $LOG
710
711bspin "Verify GOPATH"
712export GOPATH=$(pwd)
Test User3d7ad8e2019-07-03 06:15:44 +0000713mkdir -p $GOPATH/bin
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700714espin $VERIFIED
715
David Bainbridgee87067b2019-08-12 22:00:12 +0000716STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700717if [ "$INSTALL_KUBECTL" == "no" ]; then
718 bspin "Skip kubectl install"
719 espin $NO_ENTRY
Test Userc13bdc92019-07-03 20:57:49 +0000720else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700721 bspin "Verify kubectl $HELM"
722 if [ -x $GOPATH/bin/kubectl ]; then
723 espin $VERIFIED
724 else
725 espin $NOT_VERIFIED
726 bspin - "Download and install Kubernetes/kubectl $DOWNLOAD"
727 (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
728 (set -x; chmod 755 $GOPATH/bin/kubectl >>$LOG 2>&1) >>$LOG 2>&1
729 espin - $VERIFIED
730 fi
Test Userc13bdc92019-07-03 20:57:49 +0000731fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000732if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000733 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000734fi
Test Userc13bdc92019-07-03 20:57:49 +0000735
David Bainbridgee87067b2019-08-12 22:00:12 +0000736STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700737if [ "$DEPLOY_K8S" == "no" ]; then
738 bspin "Skip Kubernetes/Kind Deployment"
739 espin $NO_ENTRY
740else
Test Userba1e7e72019-07-10 22:27:54 +0000741 bspin "Verify Kubernetes/Kind $HELM"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800742 IS_INSTALLED=0
743 OP_TYPE="install"
Test Userba1e7e72019-07-10 22:27:54 +0000744 if [ -x $GOPATH/bin/kind ]; then
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800745 OP_TYPE="upgrade"
746 if [ $($GOPATH/bin/kind --version | grep -c $KIND_VERSION) -eq 1 ]; then
747 IS_INSTALLED=1
748 espin $VERIFIED
749 fi
750 fi
751 if [ $IS_INSTALLED -eq 0 ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000752 espin $NOT_VERIFIED
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800753 bspin - "Download and $OP_TYPE Kubernetes/kind $DOWNLOAD"
David Bainbridge9e2a6662019-07-11 17:07:57 +0000754 (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 +0000755 (set -x; chmod 755 $GOPATH/bin/kind >>$LOG 2>&1) >>$LOG 2>&1
756 espin - $VERIFIED
757 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700758fi
759
David Bainbridgee87067b2019-08-12 22:00:12 +0000760if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000761 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000762fi
763
764STIME=$(date +%s)
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700765if [ "$INSTALL_HELM" == "no" ]; then
766 bspin "Skip Helm Install"
767 espin $NO_ENTRY
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700768else
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700769 bspin "Verify Helm $HELM"
770 if [ -x $GOPATH/bin/helm ]; then
771 espin $VERIFIED
772 else
773 espin $NOT_VERIFIED
774 bspin - "Download and install Helm $DOWNLOAD"
David Bainbridgec6a6eb62019-10-18 22:50:07 +0000775 (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 -0700776 espin - $VERIFIED
777 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700778fi
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800779
David Bainbridgee87067b2019-08-12 22:00:12 +0000780if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000781 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000782fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700783
David Bainbridgee87067b2019-08-12 22:00:12 +0000784STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000785bspin "Verify voltctl $HIGH_VOLTAGE"
Test User3d7ad8e2019-07-03 06:15:44 +0000786if [ -x $GOPATH/bin/voltctl ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700787 espin $VERIFIED
788else
789 espin $NOT_VERIFIED
David Bainbridge99ac7a22019-08-31 02:26:43 +0000790 bspin - "Download and install voltctl $DOWNLOAD"
Test Userba1e7e72019-07-10 22:27:54 +0000791 (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 +0000792 (set -x; chmod 755 $GOPATH/bin/voltctl >>$LOG 2>&1) >>$LOG 2>&1
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700793 espin - $VERIFIED
794fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000795if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000796 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000797fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700798
799bspin "Verify command PATH"
Test Userba1e7e72019-07-10 22:27:54 +0000800export PATH=$GOPATH/bin:$PATH
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700801espin $VERIFIED
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700802
David Bainbridgee87067b2019-08-12 22:00:12 +0000803STIME=$(date +%s)
Test Userba1e7e72019-07-10 22:27:54 +0000804if [ "$DEPLOY_K8S" == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000805 HAVE=$(kind get clusters | grep -c voltha-$NAME)
Test Userba1e7e72019-07-10 22:27:54 +0000806 bspin "Verify Kubernetes/Kind Cluster"
807 sspin
808 if [ $HAVE -eq 0 ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000809 espin $NOT_VERIFIED
810 bspin - "Verify cluster configuration"
David Bainbridge0774b232019-08-02 06:37:19 +0000811 if [ ! -r ./$NAME-cluster.cfg ]; then
David Bainbridge491b1bd2019-07-11 17:53:11 +0000812 espin - $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000813 bspin - "Download cluster configuration: $TYPE-cluster.cfg to $NAME-cluster.cfg $DOWNLOAD"
814 (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 -0700815 espin - $VERIFIED
816 else
817 espin - $VERIFIED
818 fi
David Bainbridge0774b232019-08-02 06:37:19 +0000819 kind create cluster --name voltha-$NAME --config $NAME-cluster.cfg
David Bainbridge491b1bd2019-07-11 17:53:11 +0000820 else
821 espin $VERIFIED
Test Userba1e7e72019-07-10 22:27:54 +0000822 fi
823
David Bainbridge0774b232019-08-02 06:37:19 +0000824 export KUBECONFIG="$(kind get kubeconfig-path --name="voltha-$NAME")"
Test Userba1e7e72019-07-10 22:27:54 +0000825 P="coredns-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000826 etcd-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000827 kindnet-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000828 kube-apiserver-voltha-$NAME-control-plane \
829 kube-controller-manager-voltha-$NAME-control-plane \
Test Userba1e7e72019-07-10 22:27:54 +0000830 kube-proxy-.* \
David Bainbridge0774b232019-08-02 06:37:19 +0000831 kube-scheduler-voltha-$NAME-control-plane"
Test Userba1e7e72019-07-10 22:27:54 +0000832
833 EXPECT=$(test "$TYPE" == "minimal" && echo "12" || echo "14")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000834 wait_for_pods - "kube-system" $EXPECT "includes" -1 "Waiting for system PODs to start" $P
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700835fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000836if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000837 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000838fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700839
David Bainbridgee87067b2019-08-12 22:00:12 +0000840STIME=$(date +%s)
David Bainbridge4c6289c2019-09-03 21:11:32 +0000841COUNT=$(count_pods "kube-system" ":Running:" "tiller-deploy-.*")
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700842bspin "Verify Helm"
Test Userba1e7e72019-07-10 22:27:54 +0000843if [ $COUNT -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700844 espin $NOT_VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000845 echo -e "Configuring Helm $GEAR"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700846 if [ "$INSTALL_HELM" == "no" ]; then
847 bspin - "Skip Helm/Tiller Initialization"
848 espin - $NO_ENTRY
849 else
850 bspin - "Initialize Helm"
851 (set -x; helm init --upgrade >>$LOG 2>&1) >>$LOG 2>&1
852 espin - $VERIFIED
David Bainbridge4f1b5562019-08-19 04:46:52 +0000853 wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David K. Bainbridge0e89cb92019-07-17 11:30:10 -0700854 fi
Test Userb5712372019-07-03 21:52:17 +0000855 bspin - "Add Google Incubator repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700856 (set -x; helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
857 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700858
Test Userba1e7e72019-07-10 22:27:54 +0000859 # HACK (sort-of) - the config for tiller is about to be patched, which will
860 # cause the tiller pod to be recreated. This can sometimes cause a timing
861 # issue with the "wait_for_pods" call on tiller as it may incorrectly
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700862 # identify the running/ready tiller pod that is soon to be terminated as
Test Userba1e7e72019-07-10 22:27:54 +0000863 # what it is waiting for. To avoid this issue we do a clean scale down and
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700864 # scale up of the pod so the script controlls when it should be expecting
Test Userba1e7e72019-07-10 22:27:54 +0000865 # things
866 (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 -0700867
Test Userb5712372019-07-03 21:52:17 +0000868 bspin - "Add Google Stable repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700869 (set -x; helm repo add stable https://kubernetes-charts.storage.googleapis.com >>$LOG 2>&1) >>$LOG 2>&1
870 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000871 bspin - "Add ONF repository to Helm"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700872 (set -x; helm repo add onf https://charts.opencord.org >>$LOG 2>&1) >>$LOG 2>&1
873 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000874 bspin - "Update Helm repository cache"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700875 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
876 espin - $VERIFIED
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700877
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700878 # Create and k8s service account so that Helm can create pods
Test Userb5712372019-07-03 21:52:17 +0000879 bspin - "Create Tiller ServiceAccount"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700880 (set -x; kubectl create serviceaccount --namespace kube-system tiller >>$LOG 2>&1) >>$LOG 2>&1
881 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000882 bspin - "Create Tiller ClusterRoleBinding"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700883 (set -x; kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller >>$LOG 2>&1) >>$LOG 2>&1
884 espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +0000885 bspin - "Update Tiller Manifest"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700886 (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 +0000887
888 # HACK (sort-of) - part to, spin it back up
889 (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 -0700890 espin - $VERIFIED
891else
892 espin $VERIFIED
David Bainbridge46505fb2019-10-01 21:13:20 +0000893 if [ "$UPDATE_HELM_REPOS" == "yes" ]; then
894 bspin - "Update Helm repository cache"
895 (set -x; helm repo update >>$LOG 2>&1) >>$LOG 2>&1
896 espin - $VERIFIED
897 fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700898fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000899wait_for_pods - "kube-system" 1 "includes" -1 "Waiting for Tiller POD to start" "tiller-deploy-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000900if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000901 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000902fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700903
David Bainbridgee87067b2019-08-12 22:00:12 +0000904STIME=$(date +%s)
David Bainbridge0774b232019-08-02 06:37:19 +0000905bspin "Verify Helm values file: $NAME-values.yaml"
906if [ ! -r "./$NAME-values.yaml" ]; then
Test Userba1e7e72019-07-10 22:27:54 +0000907 espin $NOT_VERIFIED
David Bainbridge0774b232019-08-02 06:37:19 +0000908 bspin - "Download Helm values file: $TYPE-values.yaml to $NAME-values.yaml $DOWNLOAD"
909 (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 +0000910 espin - $VERIFIED
911else
912 espin $VERIFIED
913fi
David Bainbridgee87067b2019-08-12 22:00:12 +0000914if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000915 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000916fi
Test Userba1e7e72019-07-10 22:27:54 +0000917
David Bainbridge99ac7a22019-08-31 02:26:43 +0000918STIME=$(date +%s)
919bspin "Verify or download chart specific values files $DOWNLOAD"
920VALUES_FILES="monkey-values.yaml"
921for i in $VALUES_FILES; do
922 if [ ! -r ./$i ]; then
923 (set -x; curl -o ./$i -sSL https://raw.githubusercontent.com/ciena/kind-voltha/master/$i >>$LOG 2>&1) >>$LOG 2>&1
924 fi
925done
926espin $VERIFIED
927if [ "$WITH_TIMINGS" == "yes" ]; then
928 printtime $(expr $(date +%s) - $STIME)
929fi
930
931if [ "$WITH_CHAOS" == "yes" ]; then
932 bspin "Verify or clone kube-monkey helm chart $DOWNLOAD"
933 if [ -r ./kube-monkey ]; then
934 espin $VERIFIED
935 else
936 espin $NOT_VERIFIED
937 bspin - "GIT clone kube-monkey"
938 (set -x; git clone https://github.com/asobti/kube-monkey kube-monkey >>$LOG 2>&1) >>$LOG 2>&1
939 espin - $VERIFIED
940 fi
941fi
942
Test Userba1e7e72019-07-10 22:27:54 +0000943if [ "$JUST_K8S" == "yes" ]; then
944 echo "Environment deployed, not deploying VOLTHA artifacts as requested. Good bye."
945 echo ""
946 echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
947 echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
948 echo "tools required by VOLTHA in your command path. " | tee -a $LOG
949 echo "" | tee -a $LOG
950 echo -en $BOLD
951 if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +0000952 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +0000953 fi
954 echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
955 echo -en $NORMAL
956 echo "" | tee -a $LOG
957 echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
958 exit 0
959fi
960
David Bainbridgee87067b2019-08-12 22:00:12 +0000961STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +0000962bspin "Verify ETCD Operator $OLD_KEY"
Test User7d866122019-07-09 17:52:35 +0000963if [ $(helm list --deployed --short --namespace voltha "^etcd-operator\$" | wc -l) -ne 1 ]; then
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700964 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +0000965 helm_install - voltha etcd-operator stable/etcd-operator latest "Install ETCD Operator"
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700966else
967 espin $VERIFIED
968fi
Test User01ed0642019-07-03 20:17:06 +0000969EXPECT=$(test "$TYPE" == "minimal" && echo "1" || echo "3")
David Bainbridge4f1b5562019-08-19 04:46:52 +0000970wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for ETCD Operator to start" "etcd-operator-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +0000971if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +0000972 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +0000973fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -0700974
David Bainbridgee87067b2019-08-12 22:00:12 +0000975STIME=$(date +%s)
David Bainbridgeb270c202019-07-26 01:44:42 +0000976if [ $WITH_ONOS == "yes" ]; then
977 bspin "Verify ONOS installed $BIRD"
978 if [ $(helm list --deployed --short --namespace default "^onos\$" | wc -l) -ne 1 ]; then
979 espin $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +0000980 EXTRA_HELM_FLAGS="$SET_TAG $EXTRA_HELM_FLAGS" helm_install - default onos onf/onos latest "Install ONOS"
David Bainbridgeb270c202019-07-26 01:44:42 +0000981 else
982 espin $VERIFIED
983 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +0000984 wait_for_pods - "default" 1 "includes" -1 "Waiting for ONOS to start" "onos-.*"
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -0700985
David Bainbridgeb270c202019-07-26 01:44:42 +0000986 bspin - "Forward ONOS API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800987 kill_port_forward onos-ui
988 port_forward default onos-ui $ONOS_API_PORT 8181
David Bainbridgeb270c202019-07-26 01:44:42 +0000989 espin - $VERIFIED
990 bspin - "Forward ONOS SSH port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -0800991 kill_port_forward onos-ssh
992 port_forward default onos-ssh $ONOS_SSH_PORT 8101
David Bainbridgeb270c202019-07-26 01:44:42 +0000993 espin - $VERIFIED
David Bainbridged31d6122019-08-13 19:37:59 +0000994 bspin - "Verify or download ONOS configuration support files $DOWNLOAD"
David Bainbridge2b19e832019-08-16 02:40:53 +0000995 ONOS_FILES="olt-onos-enableExtraneousRules.json olt-onos-olt-settings.json onos-aaa.json \
David Bainbridge90fd8e32019-08-21 23:32:47 +0000996 onos-dhcpl2relay.json onos-kafka.json onos-sadis-sample.json"
David Bainbridged31d6122019-08-13 19:37:59 +0000997 (set -x; mkdir -p ./onos-files >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge2b19e832019-08-16 02:40:53 +0000998 for i in $ONOS_FILES; do
David Bainbridged31d6122019-08-13 19:37:59 +0000999 if [ ! -r ./onos-files/$i ]; then
1000 (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
1001 fi
1002 done
Test Userba1e7e72019-07-10 22:27:54 +00001003 espin - $VERIFIED
David Bainbridge27790d62019-08-13 22:43:19 +00001004
1005 if [ $INSTALL_ONOS_APPS == "yes" ]; then
1006 bspin - "Installing custom ONOS applications"
1007 if [ -x onos-files/onos-apps -a $(ls -1 onos-files/onos-apps/*.oar 2>/dev/null | wc -l) -gt 0 ]; then
1008 for OAR in $(ls -1 onos-files/onos-apps/*.oar); do
1009 sspin - "Installing custom ONOS applications - $OAR$CEOL"
David Bainbridge2b19e832019-08-16 02:40:53 +00001010 override_onos_app $OAR
David Bainbridge27790d62019-08-13 22:43:19 +00001011 done
1012 espin - "$VERIFIED Installing custom ONOS applications$CEOL"
1013 else
1014 espin - "$NOT_VERIFIED Installing custom ONOS applications - None Found"
1015 fi
1016 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001017
David Bainbridge2b19e832019-08-16 02:40:53 +00001018 push_onos_config "Push ONOS Kafka Configuration" "network/configuration/apps/org.opencord.kafka" "onos-files/onos-kafka.json"
1019 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 +00001020 push_onos_config "Enable VOLTHA ONOS DHCP provisioning" "configuration/org.opencord.olt.impl.Olt" "onos-files/olt-onos-olt-settings.json"
1021 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 +00001022 if [ -f onos-files/onos-sadis.json ]; then
1023 push_onos_config "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "onos-files/onos-sadis.json"
1024 elif [ "$CONFIG_SADIS" == "yes" ]; then
David Bainbridge90fd8e32019-08-21 23:32:47 +00001025 SADIS_CFG=onos-files/onos-sadis-sample.json
David Bainbridge2b19e832019-08-16 02:40:53 +00001026 push_onos_config "[optional] Push ONOS SADIS Configuration" "network/configuration/apps/org.opencord.sadis" "$SADIS_CFG"
1027 fi
Test Userba1e7e72019-07-10 22:27:54 +00001028fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001029if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001030 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001031fi
Test Userba1e7e72019-07-10 22:27:54 +00001032
David Bainbridgee87067b2019-08-12 22:00:12 +00001033STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001034bspin "Verify VOLTHA installed $HIGH_VOLTAGE"
Test User7d866122019-07-09 17:52:35 +00001035if [ $(helm list --deployed --short --namespace voltha "^voltha\$" | wc -l) -ne 1 ]; then
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001036 espin $NOT_VERIFIED
David Bainbridge70c0ea82019-11-14 23:25:26 +00001037 if [ "$ONLY_ONE" == "yes" ]; then
1038 EXTRA_HELM_INSTALL_ARGS="--set therecanbeonlyone=true"=
1039 fi
David Bainbridge90fd8e32019-08-21 23:32:47 +00001040 helm_install - voltha voltha $VOLTHA_CHART $VOLTHA_CHART_VERSION "Install VOLTHA Core"
David Bainbridge70c0ea82019-11-14 23:25:26 +00001041 EXTRA_HELM_INSTALL_ARGS=
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001042else
1043 espin $VERIFIED
1044fi
Test Userba1e7e72019-07-10 22:27:54 +00001045
David Bainbridge90fd8e32019-08-21 23:32:47 +00001046VOLTHA="voltha-ofagent-.* \
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001047 ro-core.* \
1048 rw-core.* \
1049 voltha-api-server-.* \
1050 voltha-cli-server-.* \
1051 voltha-etcd-cluster-.* \
1052 voltha-kafka-.* \
1053 voltha-zookeeper-.*"
David Bainbridge70c0ea82019-11-14 23:25:26 +00001054if [ "$ONLY_ONE" == "yes" ]; then
1055 EXPECT=$(test "$TYPE" == "minimal" && echo "6" || echo "8")
1056else
1057 EXPECT=$(test "$TYPE" == "minimal" && echo "9" || echo "11")
1058fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001059wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for VOLTHA Core to start" $VOLTHA
David Bainbridgee87067b2019-08-12 22:00:12 +00001060if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001061 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001062fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001063
David Bainbridge46505fb2019-10-01 21:13:20 +00001064if [ "$WITH_ADAPTERS" == "yes" ]; then
1065 STIME=$(date +%s)
1066 EXPECT=0
1067 echo -e "Verify Adapters $PLUG"
1068 if [ "$WITH_SIM_ADAPTERS" == "yes" ]; then
1069 bspin - "Verify Simulated Adapters installed"
1070 if [ $(helm list --deployed --short --namespace voltha "^sim\$" | wc -l) -ne 1 ]; then
1071 espin - $NOT_VERIFIED
1072 helm_install - voltha sim $VOLTHA_ADAPTER_SIM_CHART $VOLTHA_ADAPTER_SIM_CHART_VERSION "Install Simulated Adapters"
1073 else
1074 espin - $VERIFIED
1075 fi
1076 EXPECT=$(expr $EXPECT + 2)
1077 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001078
David Bainbridge46505fb2019-10-01 21:13:20 +00001079 if [ "$WITH_OPEN_ADAPTERS" == "yes" ]; then
1080 bspin - "Verify OpenOLT Adapter installed"
1081 if [ $(helm list --deployed --short --namespace voltha "^open-olt\$" | wc -l) -ne 1 ]; then
1082 espin - $NOT_VERIFIED
1083 helm_install - voltha open-olt $VOLTHA_ADAPTER_OPEN_OLT_CHART $VOLTHA_ADAPTER_OPEN_OLT_CHART_VERSION "Install OpenOLT Adapter"
1084 else
1085 espin - $VERIFIED
1086 fi
1087 bspin - "Verify OpenONU Adapter installed"
1088 if [ $(helm list --deployed --short --namespace voltha "^open-onu\$" | wc -l) -ne 1 ]; then
1089 espin - $NOT_VERIFIED
1090 helm_install - voltha open-onu $VOLTHA_ADAPTER_OPEN_ONU_CHART $VOLTHA_ADAPTER_OPEN_ONU_CHART_VERSION "Install OpenONU Adapter"
1091 else
1092 espin - $VERIFIED
1093 fi
1094 EXPECT=$(expr $EXPECT + 2)
1095 fi
Matteo Scandolo7ef6ba52019-10-04 09:20:37 -07001096
David Bainbridge46505fb2019-10-01 21:13:20 +00001097 ADAPTERS="adapter-.*"
1098 wait_for_pods - "voltha" $EXPECT "includes" -1 "Waiting for adapters to start" $ADAPTERS
1099 if [ "$WITH_TIMINGS" == "yes" ]; then
1100 printtime $(expr $(date +%s) - $STIME)
1101 fi
David Bainbridgee87067b2019-08-12 22:00:12 +00001102fi
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001103
Test User7d866122019-07-09 17:52:35 +00001104if [ $WITH_BBSIM == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001105 STIME=$(date +%s)
Test User7d866122019-07-09 17:52:35 +00001106 echo -e "Verify BBSIM $PLUG"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001107 bspin - "Verify BBSIM Installed"
Test User7d866122019-07-09 17:52:35 +00001108 if [ $(helm list --deployed --short --namespace voltha "^bbsim\$" | wc -l) -ne 1 ]; then
1109 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001110 helm_install - voltha bbsim $VOLTHA_BBSIM_CHART $VOLTHA_BBSIM_CHART_VERSION "Install BBSIM"
Test User7d866122019-07-09 17:52:35 +00001111 else
1112 espin - $VERIFIED
1113 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001114 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for BBSIM to start" "bbsim-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001115 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001116 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001117 fi
Test User7d866122019-07-09 17:52:35 +00001118fi
1119
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001120if [ $WITH_RADIUS == "yes" ]; then
David Bainbridgee87067b2019-08-12 22:00:12 +00001121 STIME=$(date +%s)
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001122 echo -e "Verify RADIUS $LOCK"
1123 bspin - "Verify RADIUS Installed"
1124 if [ $(helm list --deployed --short --namespace voltha "^radius\$" | wc -l) -ne 1 ]; then
1125 espin - $NOT_VERIFIED
David Bainbridge90fd8e32019-08-21 23:32:47 +00001126 helm_install - voltha radius onf/freeradius latest "Install RADIUS"
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001127 else
1128 espin - $VERIFIED
1129 fi
David Bainbridge4f1b5562019-08-19 04:46:52 +00001130 wait_for_pods - "voltha" 1 "includes" -1 "Waiting for RADIUS to start" "radius-.*"
David Bainbridgee87067b2019-08-12 22:00:12 +00001131 if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001132 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001133 fi
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001134fi
1135
David Bainbridgee87067b2019-08-12 22:00:12 +00001136STIME=$(date +%s)
Test Userb5712372019-07-03 21:52:17 +00001137bspin - "Forward VOLTHA API port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001138kill_port_forward voltha-api
1139port_forward voltha voltha-api $VOLTHA_API_PORT 55555
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001140espin - $VERIFIED
Test Userb5712372019-07-03 21:52:17 +00001141bspin - "Forward VOLTHA SSH port $FORWARD"
David Bainbridge213bbe02019-11-13 17:53:03 +00001142kill_port_forward voltha-cli
1143port_forward voltha voltha-cli $VOLTHA_SSH_PORT 5022
David K. Bainbridgeb7285432019-07-02 22:05:24 -07001144espin - $VERIFIED
David Bainbridgeac7f8072019-08-01 22:15:33 +00001145bspin - "Forward VOLTHA ETCD port $FORWARD"
David K. Bainbridgefe1fa8a2019-11-12 12:03:21 -08001146kill_port_forward voltha-etcd-cluster-client
1147port_forward voltha voltha-etcd-cluster-client $VOLTHA_ETCD_PORT 2379
David Bainbridgeac7f8072019-08-01 22:15:33 +00001148espin - $VERIFIED
David Bainbridgee87067b2019-08-12 22:00:12 +00001149if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridge712afb82019-08-14 19:55:58 +00001150 printtime $(expr $(date +%s) - $STIME)
David Bainbridgee87067b2019-08-12 22:00:12 +00001151fi
Test User3d7ad8e2019-07-03 06:15:44 +00001152
David Bainbridgeb270c202019-07-26 01:44:42 +00001153if [ $WITH_ONOS == "yes" -a $WITH_RADIUS == "yes" ]; then
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001154 bspin "Configure ONOS RADIUS Connection $GEAR"
Andy Bavier658ebef2019-11-05 17:22:56 -07001155 (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 +00001156 espin $VERIFIED
1157fi
1158
David Bainbridge99ac7a22019-08-31 02:26:43 +00001159if [ "$WITH_CHAOS" == "yes" ]; then
1160 STIME=$(date +%s)
1161 echo -e "Verify kube-monkey $LOCK"
1162 bspin - "Verify kube-monkey Installed"
1163 if [ $(helm list --deployed --short --namespace kube-monkey "^monkey\$" | wc -l) -ne 1 ]; then
1164 espin - $NOT_VERIFIED
1165 helm_install - kube-monkey monkey ./kube-monkey/helm/kubemonkey latest "Install Chaos Monkey"
1166 else
1167 espin - $VERIFIED
1168 fi
1169 wait_for_pods - "kube-monkey" 1 "includes" -1 "Waiting for Chaos to start" "monkey-.*"
1170 if [ "$WITH_TIMINGS" == "yes" ]; then
1171 printtime $(expr $(date +%s) - $STIME)
1172 fi
1173fi
1174
David Bainbridge5b7b96b2019-07-25 20:29:13 +00001175bspin "Create voltctl configuration file"
Test User3d7ad8e2019-07-03 06:15:44 +00001176(set -x; mkdir -p $HOME/.volt >>$LOG 2>&1) >>$LOG 2>&1
David Bainbridge0774b232019-08-02 06:37:19 +00001177(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 +00001178espin $VERIFIED
Test User08ebbd92019-07-03 17:15:39 +00001179
David Bainbridge0774b232019-08-02 06:37:19 +00001180if [ ! -f "$NAME-env.sh" ]; then
1181 touch $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001182fi
1183
David Bainbridge596f30d2019-07-30 17:07:59 +00001184for O in $ALL_OPTIONS; do
1185 VAL=$(eval echo \$$O)
David Bainbridge0774b232019-08-02 06:37:19 +00001186 if [ ! -z "$VAL" -a $(grep -c "^export $O=" $NAME-env.sh) -eq 0 ]; then
1187 echo "export $O=\"$(eval echo \$$O)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001188 fi
1189done
1190
David Bainbridge0774b232019-08-02 06:37:19 +00001191if [ $DEPLOY_K8S == "yes" -a $(grep -c "^export KUBECONFIG=" $NAME-env.sh) -eq 0 ]; then
1192 echo "export KUBECONFIG=\"$(./bin/kind get kubeconfig-path --name=voltha-$NAME)\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001193fi
1194
David Bainbridge0774b232019-08-02 06:37:19 +00001195if [ $(grep -c "^export VOLTCONFIG=" $NAME-env.sh) -eq 0 ]; then
1196 echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001197fi
1198
David Bainbridge0774b232019-08-02 06:37:19 +00001199if [ $(grep -c "^export PATH=" $NAME-env.sh) -eq 0 ]; then
1200 echo "export PATH=\"$GOPATH/bin:\$PATH\"" >> $NAME-env.sh
David Bainbridgeb07fdf72019-07-29 22:51:40 +00001201fi
1202
Test User7d866122019-07-09 17:52:35 +00001203echo ""
Test User08ebbd92019-07-03 17:15:39 +00001204echo "Please issue the following commands in your terminal to ensure that you" | tee -a $LOG
1205echo "are accessing the correct Kubernetes/Kind cluster as well as have the " | tee -a $LOG
1206echo "tools required by VOLTHA in your command path. " | tee -a $LOG
1207echo "" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001208echo -en $BOLD
Test Userba1e7e72019-07-10 22:27:54 +00001209if [ $DEPLOY_K8S == "yes" ]; then
David Bainbridge0774b232019-08-02 06:37:19 +00001210 echo "export KUBECONFIG=\"\$(./bin/kind get kubeconfig-path --name=\"voltha-$NAME\")\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001211fi
David Bainbridge0774b232019-08-02 06:37:19 +00001212echo "export VOLTCONFIG=\"$HOME/.volt/config-$NAME\"" | tee -a $LOG
Test Userba1e7e72019-07-10 22:27:54 +00001213echo "export PATH=$GOPATH/bin:\$PATH" | tee -a $LOG
Test User7d866122019-07-09 17:52:35 +00001214echo -en $NORMAL
Test User08ebbd92019-07-03 17:15:39 +00001215echo "" | tee -a $LOG
1216echo "Thank you for choosing kind-voltha for you quick cluster needs." | tee -a $LOG
1217
David Bainbridge712afb82019-08-14 19:55:58 +00001218if [ "$WITH_TIMINGS" == "yes" ]; then
David Bainbridgef858a022019-08-14 21:25:11 +00001219 echo -e "$CLOCK ${BOLD}TOTAL: $(duration $(expr $(date +%s) - $TOTAL_START_TIME))${NORMAL}"
David Bainbridge712afb82019-08-14 19:55:58 +00001220fi