Grafana - disabling AuthN completely

Hi all,
I’ve just provisioned a :grafana: chart on :kubernetes: but I can’t seem to disable AuthN completely.

Enabled these in my values.yml but no luck, any thoughts?

      auth:
        anonymous:
          enabled: true
          org_name: Org.
          org_role: Admin```

This grafana.ini in the values.yml has no effect!

However this worked just fine for me :wink:

      GF_AUTH_DISABLE_LOGIN_FORM: true
      GF_AUTH_ANONYMOUS_ENABLED: true
      GF_AUTH_ANONYMOUS_ORG_NAME: Main Org.
      GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
      GF_USERS_ALLOW_SIGN_UP: false```

Seems that env vars is the way to go

Values.yaml approach would have needed to be like this:

      auth.anonymous:
        enabled: true
        org_name: Org.
        org_role: Admin```

Oooh, that makes sense. Thank you,

No worries, i did the exact same thing the first time i deployed the helm chart :slightly_smiling_face:

Haha, I was so frustrated, thought docu was lying to me xD