[bitnami/airflow] fix ldap tls value (#6854)

This commit is contained in:
Ibone González Mauraza
2021-07-09 10:16:24 +02:00
committed by GitHub
parent cd7c567418
commit 3628b41e48
2 changed files with 2 additions and 2 deletions

View File

@@ -32,4 +32,4 @@ name: airflow
sources:
- https://github.com/bitnami/bitnami-docker-airflow
- https://airflow.apache.org/
version: 10.2.3
version: 10.2.4

View File

@@ -115,7 +115,7 @@ spec:
- name: AIRFLOW_LDAP_UID_FIELD
value: {{ .Values.ldap.uidField }}
- name: AIRFLOW_LDAP_USE_TLS
value: {{ ternary "yes" "no" .Values.ldap.tls.enabled | quote }}
value: {{ ternary "True" "False" .Values.ldap.tls.enabled | quote }}
{{- if .Values.ldap.tls.enabled }}
- name: AIRFLOW_LDAP_ALLOW_SELF_SIGNED
value: {{ .Values.ldap.tls.allowSelfSigned }}