Forum Navigation
You need to log in to create posts and topics.

Get grafana password from kubernetes deployment

Problem 

User lost default grafana password of deployment: prometheus-grafana

run the following commands to get the password

kubectl get svc

Find the name of the service: prometheus-grafana

kubectl get secret  prometheus-grafana -o jsonpath=”{.data.admin-password}” | base64 –decode ; echo

Uploaded files: