ArgoCD QS 2025
- Ingress now
- Oct 26
- 1 min read

1. Create the namespace (if not already present)
kubectl get ns argocd || kubectl create namespace argocd

2. Add and update the Helm repo
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update

3. Generate a rendered template (YAML output) of Argo CD v7.7.3 and save it
helm template argocd argo/argo-cd --version 7.7.3 --set crds.install=false -n argocd > ~/argo-helm.yaml
4. Use same version and disable CRD installation
helm install argocd argo/argo-cd --version 7.7.3 --set crds.install=false -n argocd

helm ls -n argocd (Cehck the the healm version)
# helm upgrade --install argocd argo/argo-cd \
--version 7.7.3 \
--set crds.install=true \
-n argocd




Comments