fix(guac-client): booleans don't work the same with with (#3549)
* fix(guac-client): booleans don't work the same with `with` * default to false
This commit is contained in:
@@ -26,7 +26,7 @@ sources:
|
|||||||
- https://hub.docker.com/r/guacamole/guacamole
|
- https://hub.docker.com/r/guacamole/guacamole
|
||||||
- http://guacamole.incubator.apache.org/doc/gug/introduction.html
|
- http://guacamole.incubator.apache.org/doc/gug/introduction.html
|
||||||
type: application
|
type: application
|
||||||
version: 4.0.32
|
version: 4.0.33
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- utilities
|
- utilities
|
||||||
|
|||||||
@@ -15,8 +15,8 @@ data:
|
|||||||
API_SESSION_TIMEOUT: {{ . | quote }}
|
API_SESSION_TIMEOUT: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{/* TOTP */}}
|
{{/* TOTP */}}
|
||||||
{{- with .Values.totp.TOTP_ENABLED }}
|
{{- if .Values.totp.TOTP_ENABLED }}
|
||||||
TOTP_ENABLED: {{ . | quote }}
|
TOTP_ENABLED: {{ .Values.totp.TOTP_ENABLED | quote }}
|
||||||
{{- with .Values.totp.TOTP_ISSUER }}
|
{{- with .Values.totp.TOTP_ISSUER }}
|
||||||
TOTP_ISSUER: {{ . | quote }}
|
TOTP_ISSUER: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@@ -31,8 +31,8 @@ data:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{/* HEADER */}}
|
{{/* HEADER */}}
|
||||||
{{- with .Values.header.HEADER_ENABLED }}
|
{{- if .Values.header.HEADER_ENABLED }}
|
||||||
HEADER_ENABLED: {{ . | quote }}
|
HEADER_ENABLED: {{ .Values.header.HEADER_ENABLED | quote }}
|
||||||
{{- with .Values.header.HTTP_AUTH_HEADER }}
|
{{- with .Values.header.HTTP_AUTH_HEADER }}
|
||||||
HTTP_AUTH_HEADER: {{ . | quote }}
|
HTTP_AUTH_HEADER: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@@ -118,8 +118,8 @@ data:
|
|||||||
{{- with .Values.radius.RADIUS_CA_PASSWORD }}
|
{{- with .Values.radius.RADIUS_CA_PASSWORD }}
|
||||||
RADIUS_CA_PASSWORD: {{ . | quote }}
|
RADIUS_CA_PASSWORD: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.radius.RADIUS_TRUST_ALL }}
|
{{- if .Values.radius.RADIUS_TRUST_ALL }}
|
||||||
RADIUS_TRUST_ALL: {{ . | quote }}
|
RADIUS_TRUST_ALL: {{ .Values.radius.RADIUS_TRUST_ALL | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.radius.RADIUS_RETRIES }}
|
{{- with .Values.radius.RADIUS_RETRIES }}
|
||||||
RADIUS_RETRIES: {{ . | quote }}
|
RADIUS_RETRIES: {{ . | quote }}
|
||||||
@@ -180,8 +180,8 @@ data:
|
|||||||
{{- with .Values.ldap.LDAP_DEREFERENCE_ALIASES }}
|
{{- with .Values.ldap.LDAP_DEREFERENCE_ALIASES }}
|
||||||
LDAP_DEREFERENCE_ALIASES: {{ . | quote }}
|
LDAP_DEREFERENCE_ALIASES: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.ldap.LDAP_FOLLOW_REFERRALS }}
|
{{- if .Values.ldap.LDAP_FOLLOW_REFERRALS }}
|
||||||
LDAP_FOLLOW_REFERRALS: {{ . | quote }}
|
LDAP_FOLLOW_REFERRALS: {{ .Values.ldap.LDAP_FOLLOW_REFERRALS | quote }}
|
||||||
{{- with .Values.ldap.LDAP_MAX_REFERRAL_HOPS }}
|
{{- with .Values.ldap.LDAP_MAX_REFERRAL_HOPS }}
|
||||||
LDAP_MAX_REFERRAL_HOPS: {{ . | quote }}
|
LDAP_MAX_REFERRAL_HOPS: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@@ -204,25 +204,25 @@ data:
|
|||||||
{{- with .Values.saml.SAML_IDP_URL }}
|
{{- with .Values.saml.SAML_IDP_URL }}
|
||||||
SAML_IDP_URL: {{ . | quote }}
|
SAML_IDP_URL: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.saml.SAML_STRICT }}
|
{{- if .Values.saml.SAML_STRICT }}
|
||||||
SAML_STRICT: {{ . | quote }}
|
SAML_STRICT: {{ .Values.saml.SAML_STRICT | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.saml.SAML_DEBUG }}
|
{{- if .Values.saml.SAML_DEBUG }}
|
||||||
SAML_DEBUG: {{ . | quote }}
|
SAML_DEBUG: {{ .Values.saml.SAML_DEBUG | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.saml.SAML_COMPRESS_REQUEST }}
|
{{- if .Values.saml.SAML_COMPRESS_REQUEST }}
|
||||||
SAML_COMPRESS_REQUEST: {{ . | quote }}
|
SAML_COMPRESS_REQUEST: {{ .Values.saml.SAML_COMPRESS_REQUEST | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.saml.SAML_COMPRESS_RESPONSE }}
|
{{- if .Values.saml.SAML_COMPRESS_RESPONSE }}
|
||||||
SAML_COMPRESS_RESPONSE: {{ . | quote }}
|
SAML_COMPRESS_RESPONSE: {{ .alues.saml.SAML_COMPRESS_RESPONSE | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.saml.SAML_GROUP_ATTRIBUTE }}
|
{{- with .Values.saml.SAML_GROUP_ATTRIBUTE }}
|
||||||
SAML_GROUP_ATTRIBUTE: {{ . | quote }}
|
SAML_GROUP_ATTRIBUTE: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{/* PROXY */}}
|
{{/* PROXY */}}
|
||||||
{{- with .Values.proxy.REMOTE_IP_VALVE_ENABLED }}
|
{{- if .Values.proxy.REMOTE_IP_VALVE_ENABLED }}
|
||||||
REMOTE_IP_VALVE_ENABLED: {{ . | quote }}
|
REMOTE_IP_VALVE_ENABLED: {{ .Values.proxy.REMOTE_IP_VALVE_ENABLED | quote }}
|
||||||
{{- with .Values.proxy.PROXY_BY_HEADER }}
|
{{- with .Values.proxy.PROXY_BY_HEADER }}
|
||||||
PROXY_BY_HEADER: {{ . | quote }}
|
PROXY_BY_HEADER: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
Reference in New Issue
Block a user