Skip to content
yellowhat edited this page Oct 7, 2022 · 4 revisions

Welcome to the argocd wiki!

Links:

Solution 1

git clone https://github.com/arthurk/argocd-example-install
cd argocd-example-install
helm repo add argocd https://argoproj.github.io/argo-helm
helm dependency build charts/argo-cd
helm install argo-cd charts/argo-cd \
    --namespace argocd \
    --create-namespace
helm template apps/ | sed "s/namespace: default/namespace: argocd/g" | kubectl apply -f -
Clone this wiki locally