From 6b6d81150e10d38398a121b5eb5a6c1c3da6665e Mon Sep 17 00:00:00 2001 From: ytimocin Date: Wed, 18 Sep 2024 19:02:18 -0700 Subject: [PATCH] Add dapr-sts* namespaces to be deleted to the clean up workflow This new namespace was added a few weeks ago and wasn't added to the cleanup-cluster.sh. I saw this when checking the long-running cluster. Adding this namespace Signed-off-by: ytimocin --- .github/scripts/cleanup-long-running-cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/cleanup-long-running-cluster.sh b/.github/scripts/cleanup-long-running-cluster.sh index 299c998db5..d9aa31d6bf 100755 --- a/.github/scripts/cleanup-long-running-cluster.sh +++ b/.github/scripts/cleanup-long-running-cluster.sh @@ -45,7 +45,7 @@ fi # Delete all test namespaces. echo "delete all test namespaces" namespaces=$(kubectl get namespace | - grep -E '^kubernetes-interop-tutorial.*|^corerp.*|^test.*|^default-.*|^radiusfunctionaltestbucket.*|^radius-test.*|^kubernetes-cli.*|^dpsb-.*|^dsrp-.*|^azstorage-workload.*|^dapr-serviceinvocation|^daprrp-rs-.*|^mynamespace.*|^demo.*|^tutorial-demo.*|^ms.+' | + grep -E '^kubernetes-interop-tutorial.*|^corerp.*|^test.*|^default-.*|^radiusfunctionaltestbucket.*|^radius-test.*|^kubernetes-cli.*|^dpsb-.*|^dsrp-.*|^azstorage-workload.*|^dapr-serviceinvocation|^daprrp-rs-.*|^dapr-sts-.*|^mynamespace.*|^demo.*|^tutorial-demo.*|^ms.+' | awk '{print $1}') for ns in $namespaces; do if [ -z "$ns" ]; then