We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4b055 commit 2b068e1Copy full SHA for 2b068e1
.github/workflows/destroy.yml
@@ -70,6 +70,7 @@ jobs:
70
run: |
71
helm uninstall ${{ vars.APP_NAME }} -n ${{ vars.APP_NAMESPACE }} || true
72
helm uninstall kube-prometheus-stack -n ${{ vars.MONITORING_NAMESPACE }} || true
73
+ helm uninstall ingress-nginx -n ingress-nginx || true
74
helm uninstall argocd -n ${{ vars.ARGOCD_NAMESPACE }} || true
75
continue-on-error: true
76
@@ -81,6 +82,7 @@ jobs:
81
82
kubectl delete namespace ${{ vars.APP_NAMESPACE }} --ignore-not-found
83
kubectl delete namespace ${{ vars.MONITORING_NAMESPACE }} --ignore-not-found
84
kubectl delete namespace ${{ vars.ARGOCD_NAMESPACE }} --ignore-not-found
85
+ kubectl delete namespace ingress-nginx --ignore-not-found
86
87
88
# ---------------------------
0 commit comments