Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion deployments/existing-sig/helper/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}/../../../"
Expand Down Expand Up @@ -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
Expand Down
Loading