Argo CD
Let's see how to run Argo CD in a Kubernetes cluster.
Configuration
We'll use the official Helm chart:
Deployment
bash
# adds Helm chart repository
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update
# installs
helm upgrade --install argocd argo/argo-cd --namespace argocd --create-namespace
# uninstalls
helm uninstall argocd -n argocd
kubectl delete ns argocd