This is an automated email from the ASF dual-hosted git repository.
damccorm pushed a commit to branch users/damccorm/debugCI
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/users/damccorm/debugCI by this
push:
new 1bee6fe01a2 Temporarily skip bad namespace
1bee6fe01a2 is described below
commit 1bee6fe01a23d64b6950aa4c538514d7ed549b14
Author: Danny McCormick <[email protected]>
AuthorDate: Thu Jan 9 10:46:27 2025 -0500
Temporarily skip bad namespace
---
.test-infra/tools/stale_k8s_workload_cleaner.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.test-infra/tools/stale_k8s_workload_cleaner.sh
b/.test-infra/tools/stale_k8s_workload_cleaner.sh
index 1c39ae6dcdf..d8a28d21c56 100755
--- a/.test-infra/tools/stale_k8s_workload_cleaner.sh
+++ b/.test-infra/tools/stale_k8s_workload_cleaner.sh
@@ -43,7 +43,7 @@ function should_teardown() {
gcloud container clusters get-credentials io-datastores --zone us-central1-a
--project apache-beam-testing
while read NAME STATUS AGE; do
- if [[ $NAME =~ ^beam-.+(test|-it) ]] && should_teardown $AGE; then
+ if [[ $NAME =~ ^beam-.+(test|-it)(?!s-singlestoreio-12661373176) ]] &&
should_teardown $AGE; then
kubectl delete namespace $NAME
fi
done < <( kubectl get namespaces
--context=gke_${PROJECT}_${LOCATION}_${CLUSTER} )