blob: 6c0b7ed678fb5cebc9d2e35a752a6ac13fb46405 [file] [log] [blame]
Gilles Depatie84cb1e72018-10-26 12:41:33 -04001#!/bin/bash +x
2# Copyright 2017-present Open Networking Foundation
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.
15
16SRC_DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
17BUILD_DIR="$SRC_DIR/../build"
18
Gilles Depatieea423712019-04-12 16:39:12 -040019cd ${BUILD_DIR}
20if [[ $# -ne 2 ]]
Gilles Depatie84cb1e72018-10-26 12:41:33 -040021 then
Gilles Depatieea423712019-04-12 16:39:12 -040022 echo "Wrong number of arguments supplied"
Gilles Depatie84cb1e72018-10-26 12:41:33 -040023 exit 1
24fi
Gilles Depatieea423712019-04-12 16:39:12 -040025if [[ -z "${1}" || -z "${2}" ]]
Gilles Depatie84cb1e72018-10-26 12:41:33 -040026 then
27 echo "Empty argument supplied"
28 exit 1
29fi
Gilles Depatieea423712019-04-12 16:39:12 -040030if [[ "${1}" == "clear" ]]
Gilles Depatie84cb1e72018-10-26 12:41:33 -040031 then
32 sudo make reset-kubeadm
Gilles Depatieea423712019-04-12 16:39:12 -040033elif [[ "${1}" == "start" ]]
Gilles Depatie84cb1e72018-10-26 12:41:33 -040034 then
Gilles Depatie1be639b2018-12-06 10:51:08 -050035 sudo service docker restart
Gilles Depatieea423712019-04-12 16:39:12 -040036 sudo make -f Makefile ${2}
37elif [[ "${1}" == "stop" ]]
Gilles Depatie84cb1e72018-10-26 12:41:33 -040038 then
39 pods=$( /usr/bin/kubectl get pods --all-namespaces 2>&1 | grep -c -e refused -e resource )
Gilles Depatieea423712019-04-12 16:39:12 -040040 if [[ ${pods} -eq 0 ]]
Gilles Depatie84cb1e72018-10-26 12:41:33 -040041 then
42 sudo make teardown-charts
43 fi
44fi
45exit 0