From aa537c8e6efde849045fdbd012bc70e6ecb33f63 Mon Sep 17 00:00:00 2001 From: app/github-actions Date: Wed, 24 Jun 2026 07:32:06 +0000 Subject: [PATCH 1/2] pr commit From 218d548e90d07d72f142f41d1a22ba72fcdaba37 Mon Sep 17 00:00:00 2001 From: ptownley Date: Wed, 24 Jun 2026 08:37:51 +0100 Subject: [PATCH 2/2] Pin argocd to a specific version --- deployments/existing-sig/helper/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deployments/existing-sig/helper/install.sh b/deployments/existing-sig/helper/install.sh index d2e9230..827e0a4 100755 --- a/deployments/existing-sig/helper/install.sh +++ b/deployments/existing-sig/helper/install.sh @@ -2,6 +2,8 @@ set -euo pipefail +ARGO_VERSION=v3.4.4 + SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) # shellcheck source=helper/lib.sh JUNO_BOOTSTRAP_ROOT="${SCRIPT_DIR}/../../../" @@ -221,7 +223,7 @@ fi # --- Check if ArgoCD is installed --- if ! kubectl get deployment -n argocd argocd-server >/dev/null 2>&1; then echo "⚡ ArgoCD not detected in 'argocd' namespace. Installing ArgoCD..." - kubectl create -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml + kubectl create -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/$ARGO_VERSION/manifests/install.yaml echo "✅ ArgoCD installation triggered. Waiting for server deployment to be ready..." kubectl rollout status deployment/argocd-server -n argocd fi