UNCLASSIFIED - NO CUI

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

feat: Support for more grafana SSO parameters

parent 70c0bbf2
No related branches found
No related tags found
1 merge request!516Better support for grafana SSO parameters
Pipeline #291267 passed
......@@ -67,7 +67,13 @@ grafana:
api_url: {{ .Values.monitoring.sso.grafana.api_url | default (tpl "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 | default "True" }}
role_attribute_path: {{ .Values.monitoring.sso.grafana.role_attribute_path | default "Viewer" }}
allowed_domains: {{ .Values.monitoring.sso.grafana.allowed_domains }}
{{- with .Values.monitoring.sso.grafana }}
{{- list "allowed_domains" .allowed_domains | include "bigbang.addValueIfSet" | indent 6 }}
{{- list "tls_client_ca" .tls_client_ca | include "bigbang.addValueIfSet" | indent 6 }}
{{- list "tls_skip_verify_insecure" .tls_skip_verify_insecure | include "bigbang.addValueIfSet" | indent 6 }}
{{- list "tls_client_cert" .tls_client_cert | include "bigbang.addValueIfSet" | indent 6 }}
{{- list "tls_client_key" .tls_client_key | include "bigbang.addValueIfSet" | indent 6 }}
{{- end }}
prometheus-node-exporter:
serviceAccount:
......
......@@ -347,10 +347,13 @@ monitoring:
# -- Grafana OIDC client secret
client_secret: ""
# -- Grafana OIDC client scopes, comma separated
# -- Grafana OIDC client scopes, comma separated, see https://grafana.com/docs/grafana/latest/auth/generic-oauth/
scopes: ""
allow_sign_up: "true"
role_attribute_path: "Viewer"
# -- Other options available, see package Documentation.
# -- Values to passthrough to the monitoring chart: https://repo1.dso.mil/platform-one/big-bang/apps/core/monitoring.git
values: {}
......
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