From 62a0d0e9b92bf4ac58654a3159a43bad8e6fb7bc Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 14 May 2025 22:36:38 -0500 Subject: [PATCH] stringify --- .../grafana-operator/templates/grafana.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/clusters/cl01tl/monitoring/grafana-operator/templates/grafana.yaml b/clusters/cl01tl/monitoring/grafana-operator/templates/grafana.yaml index bf91365fd..ba21dc224 100644 --- a/clusters/cl01tl/monitoring/grafana-operator/templates/grafana.yaml +++ b/clusters/cl01tl/monitoring/grafana-operator/templates/grafana.yaml @@ -12,9 +12,9 @@ metadata: spec: config: analytics: - enabled: false - check_for_updates: false - reporting_enabled: false + enabled: "false" + check_for_updates: "false" + reporting_enabled: "false" server: domain: alexlebens.net root_url: https://grafana.alexlebens.net @@ -24,16 +24,16 @@ spec: admin_user: ${ADMIN_USER} admin_password: ${ADMIN_PASSWORD} users: - auto_assign_org: true + auto_assign_org: "true" auto_assign_org_id: 1 auth: - disable_login_form: true - oauth_auto_login: true + disable_login_form: "true" + oauth_auto_login: "true" signout_redirect_url: https://authentik.alexlebens.net/application/o/grafana/end-session/ auth.generic_oauth: - enabled: true + enabled: "true" name: Authentik - allow_sign_up: true + allow_sign_up: "true" client_id: ${AUTH_CLIENT_ID} client_secret: ${AUTH_CLIENT_SECRET} scopes: openid profile email @@ -48,7 +48,7 @@ spec: user: ${DB_USER} password: ${DB_PASSWORD} unified_alerting: - enabled: true + enabled: "true" ha_listen_address: "${POD_IP}:9094" ha_peers: "grafana-alerting:9094" ha_advertise_address: "${POD_IP}:9094"