<mohammadrony>

Installation

Helm chart

Repository

helm repo add argo https://argoproj.github.io/argo-helm
helm repo update

Argo CD

# helm pull argo/argo-cd --untar
helm install argocd argo/argo-cd --namespace argocd --create-namespace

YAML install

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Dashboard

Ingress

kubectl apply -f ingress.yaml

Admin password

kubectl get secret -n argocd argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo