ArgoCD
How to install
By script
kubectl create namespace argocdkubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yamlTo reach ArgoCD UI
kubectl port-forward svc/argocd-server -n argocd 8080:443127.0.0.1:8080
admin
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
By Helm
helm repo add argo https://argoproj.github.io/argo-helmhelm install my-release argo/argo-cd
Deploy simple app
cd to the project
> kubectl apply -f application.yamlLast updated
Was this helpful?