fix invalid types in env vars

This commit is contained in:
James 2025-03-10 20:28:06 +00:00
parent c508b8173c
commit 767943c261
Signed by: thumbscrw
GPG Key ID: 4A3BB8AF7D9C2B46

View File

@ -72,7 +72,7 @@ spec:
{{- end }}
{{- if .Values.freshrss.oidc.enabled }}
- name: OIDC_ENABLED
value: true
value: "true"
{{- with .Values.freshrss.oidc }}
- name: OIDC_PROVIDER_METADATA_URL
value: {{ .providerMetadataUrl }}
@ -113,10 +113,11 @@ spec:
value: {{ printf "%s" (join " " .xForwardedHeaders) }}
{{- end }}
- name: OIDC_SESSION_INACTIVITY_TIMEOUT
value: {{ .session.inactivityTimeout }}
{{- if ge .session.maxDuration 0 }}
# value: {{ printf "%d" (add .session.inactivityTimeout) }}
value: "{{ .session.inactivityTimeout }}"
{{- if ge .session.maxDuration 0.0 }}
- name: OIDC_SESSION_MAX_DURATION
value: {{ printf "%d" (add .session.maxDuration) }}
value: "{{ .session.maxDuration }}"
{{- end }}
{{- if .session.type }}
- name: OIDC_SESSION_TYPE