X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fopenstack-cleanup-orphaned-k8s-clusters.sh;h=04913341e98a9efd84e37093ceea4101b3605260;hb=refs%2Fchanges%2F59%2F72659%2F3;hp=0e5f392d787039a63c95d1ea3705031e195fd423;hpb=5f3d9b0c8343ee4dce1ed0d0c39f8677799b0c74;p=releng%2Fglobal-jjb.git diff --git a/shell/openstack-cleanup-orphaned-k8s-clusters.sh b/shell/openstack-cleanup-orphaned-k8s-clusters.sh index 0e5f392d..04913341 100644 --- a/shell/openstack-cleanup-orphaned-k8s-clusters.sh +++ b/shell/openstack-cleanup-orphaned-k8s-clusters.sh @@ -87,6 +87,11 @@ for CLUSTER_NAME in "${OS_COE_CLUSTERS[@]}"; do if cluster_in_jenkins "$CLUSTER_NAME" $jenkins_urls; then # No need to delete stacks if there exists an active build for them continue + elif [[ "$CLUSTER_NAME" == *-managed-prod-k8s-* ]] || \ + [[ "$CLUSTER_NAME" == *-managed-test-k8s-* ]]; then + # Don't destroy long lived managed k8s clusters used in Jenkins jobs + echo "Not deleting managed cluster: $CLUSTER_NAME" + continue else echo "Deleting orphaned k8s cluster: $CLUSTER_NAME" openstack --os-cloud "$os_cloud" coe cluster delete "$CLUSTER_NAME"