Skip to content

Commit

Permalink
Add dapr-sts* namespaces to be deleted to the clean up workflow
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
ytimocin committed Sep 19, 2024
1 parent a17f9cf commit db06cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/cleanup-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit db06cfb

Please sign in to comment.