From 5cdcca4d5319bddd24f3e4724f4b2bbe3dededde Mon Sep 17 00:00:00 2001 From: Amanuel Engeda <74629455+engedaam@users.noreply.github.com> Date: Tue, 9 Apr 2024 15:21:59 -0700 Subject: [PATCH] ci: Exclude cluster from termination for Windows investigation (#6008) --- test/hack/resource/clean/main.go | 2 +- test/hack/soak/get_clusters.go | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/hack/resource/clean/main.go b/test/hack/resource/clean/main.go index fc44495a1984..aed3d68d433e 100644 --- a/test/hack/resource/clean/main.go +++ b/test/hack/resource/clean/main.go @@ -35,7 +35,7 @@ import ( const sweeperCleanedResourcesTableName = "sweeperCleanedResources" var excludedClusters = []string{ - "soak-periodic-2213793", + "soak-periodic-2785632730", } func main() { diff --git a/test/hack/soak/get_clusters.go b/test/hack/soak/get_clusters.go index 1278f933753b..936ea4c16033 100644 --- a/test/hack/soak/get_clusters.go +++ b/test/hack/soak/get_clusters.go @@ -36,7 +36,9 @@ type cluster struct { const expirationTTL = time.Hour * 168 // 7 days -var excludedClustersCleanup = []string{} +var excludedClustersCleanup = []string{ + "soak-periodic-2785632730", +} func main() { ctx := context.Background()