Argo CD
Container running Argo CD which provides an UI to deploy with helm or Kustomize in a Kubernetes cluster :
Usage with Kubernetes
- Read k8s-install.sh and run :
# To get ArgoCD on http://argocd.dev.localhost
bash k8s-install.sh
# To get ArgoCD on http://argocd.example.net
DEVBOX_HOSTNAME=example.net bash k8s-install.sh
- Retrieve initial admin password :
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
- Open http://argocd.dev.localhost
- Add some apps (see argoproj/argocd-example-apps)
Using ArgoCD behind a proxy
If setting http_proxy and https_proxy is required to reach GIT repositories, use Argo Helm Charts and see github.com - Setting proxy in argocd server.