ArgoCD
This excellent tutorial is what we followed to deploy ArgoCD. The private repo access was provided manually via the ArgoCD web UI by first generating a repo_read
API token on GitLab and using it as the password in the Repository settings.
Command line access
To use the local ArgoCD CLI, use the more complex login command, which will open a browser window to complete the GitHub authentication:
argocd login musesframework.io --grpc-web-root-path /argo-cd --sso
Installation
Install ArgoCD manually via Helm:
helm upgrade --install -n argo-cd argo-cd charts/argo-cd
Optionally, add the ArgoCD deployment as an app so ArgoCD can manage itself. Once synced via the ArgoCD web UI, remove the Helm release secret:
$ kubectl delete -n argo-cd secret -l owner=helm,name=argo-cd
secret "sh.helm.release.v1.argo-cd.v1" deleted