Feat: Define naming of K8S clusters to preserve 99/72299/4
authorMatthew Watkins <mwatkins@linuxfoundation.org>
Tue, 31 Oct 2023 08:09:30 +0000 (08:09 +0000)
committerMatthew Watkins <mwatkins@linuxfoundation.org>
Tue, 31 Oct 2023 12:44:51 +0000 (12:44 +0000)
Issue: RELENG-4963
Change-Id: If7e283b6b2d8bb55a8f4a08b6406b85530f7eedd
Signed-off-by: Matthew Watkins <mwatkins@linuxfoundation.org>
shell/openstack-cleanup-orphaned-k8s-clusters.sh

index 0e5f392..0491334 100644 (file)
@@ -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"