What is the default login password for grafana?
Default login is admin.
But there is no default password - it's generating if it's not set and stored inside secretes.
You can read it in this way:
kubectl get secret --namespace default grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Any further update will cause the issue/pull request to no longer be considered stale. Thank you for your contributions.
Most helpful comment
Default login is admin.
But there is no default password - it's generating if it's not set and stored inside secretes.
You can read it in this way:
kubectl get secret --namespace default grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo