How do I log in to the helm chart configured Grafana dashboard?

I have just installed Temporal using the helm chart provided in GitHub - temporalio/helm-charts: Temporal Helm charts locally in microk8s. (and all pods are green after adjusting elasticsearch node affinity) . I see these values in the conf/defaults.ini. But i cannot login using admin/admin .

#################################### Security ############################
[security]

disable creation of admin user on first start of grafana

disable_initial_admin_creation = false

default admin user, created on startup

admin_user = admin

default admin password, can be changed before first start of grafana, or in profile settings

admin_password = admin

2 Likes

Hi Remy, this command line

kubectl get secret --namespace default temporaltest-grafana -o jsonpath="{.data.admin-password}" | base64 --decode

should print grafana password.

(if you used a non-default namespace, or release name other than temporaltest - adjust accordingly).

Thanks Mark!

if you want something non production grade and quick
just add this to your values.yaml under grafana section

grafana:
enabled: true
replicas: 1
adminPassword: Something!

1 Like