Charts: What is the default login password for grafana?

Created on 19 Jul 2019  路  2Comments  路  Source: helm/charts

What is the default login password for grafana?

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

All 2 comments

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.

Was this page helpful?
0 / 5 - 0 ratings