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 17634a1 commit e6ccd8dCopy full SHA for e6ccd8d
.github/workflows/destroy.yml
@@ -27,9 +27,13 @@ jobs:
27
- name: Delete LoadBalancer Services
28
run: |
29
aws eks update-kubeconfig --name otel-cluster --region us-east-1 || true
30
- helm uninstall solar-system --namespace default || true
31
- kubectl delete svc -l app=solar-system || true
32
+ # Delete ArgoCD application (this will clean up all Helm resources)
+ kubectl delete application solar-system -n argocd || true
33
+
34
+ # Delete ArgoCD LoadBalancer to avoid Terraform destroy hanging
35
+ kubectl delete svc argocd-server -n argocd || true
36
37
- name: Terraform Init
38
run: terraform init
39
working-directory: ./Terraform
0 commit comments