Skip to content

Commit

Permalink
ci: Exclude cluster from termination for Windows investigation (#6008)
Browse files Browse the repository at this point in the history
  • Loading branch information
engedaam authored Apr 9, 2024
1 parent c101fb2 commit 5cdcca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/hack/resource/clean/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
const sweeperCleanedResourcesTableName = "sweeperCleanedResources"

var excludedClusters = []string{
"soak-periodic-2213793",
"soak-periodic-2785632730",
}

func main() {
Expand Down
4 changes: 3 additions & 1 deletion test/hack/soak/get_clusters.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 5cdcca4

Please sign in to comment.