2015-09-01 13:35:38 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Script that destroys Kubemark clusters and deletes all GCE resources created for Master
|
|
|
|
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
|
|
|
|
|
2015-10-09 16:20:42 +00:00
|
|
|
source "${KUBE_ROOT}/test/kubemark/common.sh"
|
2015-09-01 13:35:38 +00:00
|
|
|
|
2016-04-20 17:59:32 +00:00
|
|
|
"${KUBECTL}" delete -f "${RESOURCE_DIRECTORY}/hollow-kubelet.json" &> /dev/null || true
|
|
|
|
"${KUBECTL}" delete -f "${RESOURCE_DIRECTORY}/addons" &> /dev/null || true
|
|
|
|
"${KUBECTL}" delete -f "${RESOURCE_DIRECTORY}/kubemark-ns.json" &> /dev/null || true
|
|
|
|
rm -rf "${RESOURCE_DIRECTORY}/addons"
|
2015-09-01 13:35:38 +00:00
|
|
|
|
2015-10-09 16:20:42 +00:00
|
|
|
GCLOUD_COMMON_ARGS="--project ${PROJECT} --zone ${ZONE} --quiet"
|
|
|
|
|
2015-10-02 07:42:02 +00:00
|
|
|
gcloud compute instances delete "${MASTER_NAME}" \
|
2015-10-09 16:20:42 +00:00
|
|
|
${GCLOUD_COMMON_ARGS} || true
|
2015-09-01 13:35:38 +00:00
|
|
|
|
2015-10-09 16:20:42 +00:00
|
|
|
gcloud compute disks delete "${MASTER_NAME}-pd" \
|
|
|
|
${GCLOUD_COMMON_ARGS} || true
|
2015-10-13 14:01:25 +00:00
|
|
|
|
|
|
|
gcloud compute firewall-rules delete "${INSTANCE_PREFIX}-kubemark-master-https" \
|
2015-10-09 16:20:42 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet || true
|
|
|
|
|
|
|
|
if [ "${SEPARATE_EVENT_MACHINE:-false}" == "true" ]; then
|
|
|
|
gcloud compute instances delete "${EVENT_STORE_NAME}" \
|
|
|
|
${GCLOUD_COMMON_ARGS} || true
|
|
|
|
|
|
|
|
gcloud compute disks delete "${EVENT_STORE_NAME}-pd" \
|
|
|
|
${GCLOUD_COMMON_ARGS} || true
|
|
|
|
fi
|
2015-09-01 13:35:38 +00:00
|
|
|
|
2016-04-20 17:59:32 +00:00
|
|
|
rm -rf "${RESOURCE_DIRECTORY}/addons" "${RESOURCE_DIRECTORY}/kubeconfig.loc" &> /dev/null || true
|
|
|
|
rm "${RESOURCE_DIRECTORY}/ca.crt" "${RESOURCE_DIRECTORY}/kubecfg.crt" "${RESOURCE_DIRECTORY}/kubecfg.key" "${RESOURCE_DIRECTORY}/hollow-node.json" &> /dev/null || true
|