Skip to content
Open
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
13 changes: 13 additions & 0 deletions .ops/ops-dashboard/values.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{{ $configFile := `
email_domains = [ "*" ]
upstreams = [ "file:///dev/null" ]
skip_provider_button = true
`
}}

grafana-proxy:
ingress:
enabled: true
Expand All @@ -14,6 +21,8 @@ grafana-proxy:
clientID: {{ .Environment.Values | getOrNil "GRAFANA_PROXY_OAUTH_CLIENT_ID" | required "GRAFANA_PROXY_OAUTH_CLIENT_ID is required" | quote }}
# OAuth client secret
clientSecret: {{ .Environment.Values | getOrNil "GRAFANA_PROXY_OAUTH_CLIENT_SECRET" | required "GRAFANA_PROXY_OAUTH_CLIENT_SECRET is required" | quote }}
configFile: |
{{- $configFile | trim | nindent 8 }}
# Create a new secret with the following command
# openssl rand -base64 32 | head -c 32 | base64
cookieSecret: {{ .Environment.Values | getOrNil "COOKIE_SECRET" | required "COOKIE_SECRET is required" | quote }}
Expand All @@ -34,6 +43,8 @@ kubernetes-dashboard-proxy:
clientID: {{ .Environment.Values | getOrNil "KUBERNETES_DASHBOARD_PROXY_OAUTH_CLIENT_ID" | required "KUBERNETES_DASHBOARD_PROXY_OAUTH_CLIENT_ID is required" | quote }}
# OAuth client secret
clientSecret: {{ .Environment.Values | getOrNil "KUBERNETES_DASHBOARD_PROXY_OAUTH_CLIENT_SECRET" | required "KUBERNETES_DASHBOARD_PROXY_OAUTH_CLIENT_SECRET is required" | quote }}
configFile: |
{{- $configFile | trim | nindent 8 }}
# Create a new secret with the following command
# openssl rand -base64 32 | head -c 32 | base64
cookieSecret: {{ .Environment.Values | getOrNil "COOKIE_SECRET" | required "COOKIE_SECRET is required" | quote }}
Expand All @@ -53,6 +64,8 @@ logging-proxy:
clientID: {{ .Environment.Values | getOrNil "LOGGING_PROXY_OAUTH_CLIENT_ID" | required "LOGGING_PROXY_OAUTH_CLIENT_ID is required" | quote }}
# OAuth client secret
clientSecret: {{ .Environment.Values | getOrNil "LOGGING_PROXY_OAUTH_CLIENT_SECRET" | required "LOGGING_PROXY_OAUTH_CLIENT_SECRET is required" | quote }}
configFile: |
{{- $configFile | trim | nindent 8 }}
# Create a new secret with the following command
# openssl rand -base64 32 | head -c 32 | base64
cookieSecret: {{ .Environment.Values | getOrNil "COOKIE_SECRET" | required "COOKIE_SECRET is required" | quote }}