Add an explicit ArgoCD sync and health-poll script

This commit is contained in:
2026-08-19 09:21:35 +07:00
parent b68005be1c
commit f50ccfc5f7
12 changed files with 298 additions and 54 deletions
+22
View File
@@ -0,0 +1,22 @@
name: Inspect ArgoCD Application (read-only)
# One-off diagnostic to see the live medical-chatbot-app Application's inline
# helm values before writing a script that edits them (adding secret.jwtSecret
# alongside the existing secret.grafanaAdminPassword). Read-only: only calls
# GET on the ArgoCD API, never PUT or sync.
on:
workflow_dispatch: {}
jobs:
inspect:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Inspect live Application
env:
ARGOCD_PRACTICE_URL: ${{ secrets.ARGOCD_PRACTICE_URL }}
ARGOCD_PRACTICE_PASSWORD: ${{ secrets.ARGOCD_PRACTICE_PASSWORD }}
run: python3 .github/scripts/inspect_argocd_app.py