From ba65535f275d385c6206712563482006fa79be1e Mon Sep 17 00:00:00 2001 From: Daniel Loader Date: Tue, 13 Aug 2024 15:41:37 +0100 Subject: [PATCH] fix: add quotes around oidc options --- charts/openfga/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/openfga/templates/deployment.yaml b/charts/openfga/templates/deployment.yaml index d3d9aec..5af7dfb 100644 --- a/charts/openfga/templates/deployment.yaml +++ b/charts/openfga/templates/deployment.yaml @@ -205,12 +205,12 @@ spec: {{- if .Values.authn.oidc.audience }} - name: OPENFGA_AUTHN_OIDC_AUDIENCE - value: {{ .Values.authn.oidc.audience }} + value: "{{ .Values.authn.oidc.audience }}" {{- end }} {{- if .Values.authn.oidc.issuer }} - name: OPENFGA_AUTHN_OIDC_ISSUER - value: {{ .Values.authn.oidc.issuer }} + value: "{{ .Values.authn.oidc.issuer }}" {{- end }} - name: OPENFGA_PLAYGROUND_ENABLED