Airflow fix Kubernetes Executor initContainer envs (#5722)

This commit is contained in:
Miguel Ruiz
2021-03-11 09:29:24 +01:00
committed by GitHub
parent b59ff20234
commit 4a50f53f55
2 changed files with 5 additions and 1 deletions

View File

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

View File

@@ -57,6 +57,10 @@ data:
{{- include "airflow.configure.database" . | nindent 12 }}
{{- include "airflow.configure.redis" . | nindent 12 }}
{{- include "airflow.configure.airflow.kubernetesExecutor" . | nindent 12 }}
- name: AIRFLOW_WEBSERVER_HOST
value: {{ include "common.names.fullname" . }}
- name: AIRFLOW_WEBSERVER_PORT_NUMBER
value: {{ .Values.service.port | quote }}
{{- if .Values.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.extraEnvVars "context" $) | nindent 12 }}
{{- end }}