https://github.com/kubeflow/katib
Raw File
Tip revision: 2ffc241b33c035a8b6645bc9d2cc56858200e199 authored by Xiangyang Chu on 29 September 2018, 02:54:31 UTC
Update `checkStatus` return value orders
Tip revision: 2ffc241
delete-cluster.sh
#!/bin/bash

# Copyright 2018 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# This shell script is used to build a cluster and create a namespace from our
# argo workflow


set -o errexit
set -o nounset
set -o pipefail

CLUSTER_NAME="${CLUSTER_NAME}"
ZONE="${GCP_ZONE}"
PROJECT="${GCP_PROJECT}"

echo "Activating service-account"
gcloud auth activate-service-account --key-file=${GOOGLE_APPLICATION_CREDENTIALS}
echo "Tearing down the cluster"
gcloud container clusters delete ${CLUSTER_NAME} --zone=${ZONE} --project=${PROJECT}
back to top