UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 91fb73c5 authored by Ryan Garcia's avatar Ryan Garcia :dizzy:
Browse files

feat: Grafana OIDC template and documentation

Adding default values to grafana.ini templating.
parent 97d21784
No related branches found
No related tags found
2 merge requests!188Staging,!182[BB-843] - Grafana OIDC template and documentation
Pipeline #147157 failed
......@@ -61,12 +61,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:
......@@ -100,4 +100,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