Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Node_IP = address/dns of the machine where is installed k3s


Get the ArgoCD Initial Admin Password

ArgoCD generates a default admin password during installation. You can retrieve it by running this command:

kubectl get secret argocd-initial-admin-secret -n argocd -o jsonpath="{.data.password}" | base64 --decode

The username is admin, and the password is what you just retrieved.

Access the ArgoCD Web UI

  • URL: http://<Node_IP>:<NodePort> or http://<LoadBalancer_IP>
  • Username: admin
  • Password: Use the password retrieved in the previous step.