history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. === Authentication === == Use token for authentication == <code> export ARGOCD_AUTH_TOKEN=<JWT token generated from project> </code> == Login == <code> argocd login [host] --grpc-web --name [argocd-server-name] --username admin --password xxxxxxxxxx </code> == Update admin password == <code> argocd account update-password --account admin --current-password xxxxx --new-password xxxxxx </code> == Add cluster == <code> argocd cluster add --insecure --name [cluster_name] [kubeconfig_context_name] </code>