Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grafana - disable login; anonymous user viewer #177

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pkg/app/dbs/tmpl/prom/grafana/dep.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,17 @@ spec:
- name: GF_AUTH_ANONYMOUS_ENABLED
value: "true"
- name: GF_AUTH_ANONYMOUS_ORG_ROLE
value: Admin
value: Viewer
- name: GF_AUTH_ORG_ROLE
value: Viewer
- name: GF_SECURITY_ALLOW_EMBEDDING
value: "true"
- name: GF_SERVER_HTTP_ADDR
value: "0.0.0.0"
- name: GF_AUTH_DISABLE_LOGIN_FORM
value: "true"
- name: GF_DISABLE_INITIAL_ADMIN_CREATION
value: "true"
- name: GF_SERVER_HTTP_PORT
value: "{{ .Spec.Dbs.Prom.Grafana.Port }}"
ports:
Expand Down
Loading