I want to ask how to add Grafana admin password configuration in helm chart.
I have followed this link github
From the link, I put below values in (values come from above github page)
[security]
# 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 = bullebolle
# used for signing
;secret_key = SW2YcwTIb9zpOOhoPsMm
# Auto-login remember days
;login_remember_days = 7
;cookie_username = grafana_user
;cookie_remember_name = grafana_remember
in grafana-config.yml. After this I have re-applied that with kubectl apply -f grafana-config.yml but the password didn't change.
If I follow this link stackoverflow - How to reset grafana's admin password (installed by helm) I can change admin password but data is lost after restart deployment.
How can I solve this problem ?
Thanks for answering