UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 3108a24b authored by Ryan Garcia's avatar Ryan Garcia :dizzy: Committed by Josh Wolf
Browse files

feat: Grafana OIDC template and documentation

Adding default values to grafana.ini templating.
parent cb6b624c
No related branches found
No related tags found
No related merge requests found
......@@ -65,12 +65,12 @@ spec:
enabled: {{ .Values.monitoring.sso.enabled }}
client_id: {{ .Values.monitoring.sso.grafana.client_id }}
client_secret: {{ .Values.monitoring.sso.grafana.client_secret }}
scopes: {{ .Values.monitoring.sso.grafana.scopes }}
scopes: {{ .Values.monitoring.sso.grafana.scopes | default "openid profile email" }}
auth_url: https://{{ .Values.sso.oidc.host }}/auth/realms/{{ .Values.sso.oidc.realm }}/protocol/openid-connect/auth
token_url: https://{{ .Values.sso.oidc.host }}/auth/realms/{{ .Values.sso.oidc.realm }}/protocol/openid-connect/token
api_url: https://{{ .Values.sso.oidc.host }}/auth/realms/{{ .Values.sso.oidc.realm }}/protocol/openid-connect/userinfo
allow_sign_up: {{ .Values.monitoring.sso.grafana.allow_sign_up }}
role_attribute_path: {{ .Values.monitoring.sso.grafana.role_attribute_path }}
allow_sign_up: {{ .Values.monitoring.sso.grafana.allow_sign_up | default "True" }}
role_attribute_path: {{ .Values.monitoring.sso.grafana.role_attribute_path | default "Viewer" }}
prometheus-node-exporter:
serviceAccount:
......@@ -104,4 +104,4 @@ spec:
namespace: {{ .Release.Namespace }}
{{- end }}
{{- end }}
{{- end }}
\ No newline at end of file
{{- end }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment