From 9b14caa4f47c59a94eefb70d8f45a03c353cdb12 Mon Sep 17 00:00:00 2001 From: Matthew Watkins Date: Tue, 31 Oct 2023 08:09:30 +0000 Subject: [PATCH] Feat: Define naming of K8S clusters to preserve Issue: RELENG-4963 Change-Id: If7e283b6b2d8bb55a8f4a08b6406b85530f7eedd Signed-off-by: Matthew Watkins --- shell/openstack-cleanup-orphaned-k8s-clusters.sh | 5 +++++ 1 file changed, 5 insertions(+) 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" -- 2.16.6