We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7d965a commit 239cb2cCopy full SHA for 239cb2c
.github/workflows/app-state-validation.yml
@@ -103,7 +103,11 @@ jobs:
103
if: steps.cluster_mode.outputs.mode == 'kind'
104
run: |
105
chmod +x ./scripts/kind/02-install-argocd.sh
106
- ./scripts/kind/02-install-argocd.sh
+ # Run script but continue even if argocd login fails (it's optional for CI)
107
+ ./scripts/kind/02-install-argocd.sh || true
108
+
109
+ # Verify ArgoCD is actually installed
110
+ kubectl wait --for=condition=available deployment/argocd-server -n argocd --timeout=300s
111
112
- name: Bootstrap ArgoCD applications
113
0 commit comments