Skip to content

Commit

Permalink
Add dapr-sts* namespaces to be deleted to the clean-up workflow (#7942)
Browse files Browse the repository at this point in the history
# Description

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.

## Type of change
- This pull request is a minor refactor, code cleanup, test improvement,
or other maintenance task and doesn't change the functionality of Radius
(issue link optional).

Signed-off-by: ytimocin <[email protected]>
  • Loading branch information
ytimocin authored Sep 19, 2024
1 parent 50c1600 commit a7395fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/cleanup-long-running-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 a7395fb

Please sign in to comment.