12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # Licensed to the Apache Software Foundation (ASF) under one
- # or more contributor license agreements. See the NOTICE file
- # distributed with this work for additional information
- # regarding copyright ownership. The ASF licenses this file
- # to you under the Apache License, Version 2.0 (the
- # "License"); you may not use this file except in compliance
- # with the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing,
- # software distributed under the License is distributed on an
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- # KIND, either express or implied. See the License for the
- # specific language governing permissions and limitations
- # under the License.
- ################################
- ## Airflow ConfigMap
- #################################
- apiVersion: v1
- kind: ConfigMap
- metadata:
- name: {{ template "airflow_config" . }}
- labels:
- tier: airflow
- component: config
- release: {{ .Release.Name }}
- chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
- heritage: {{ .Release.Service }}
- {{- with .Values.labels }}
- {{ toYaml . | indent 4 }}
- {{- end -}}
- {{- if .Values.airflowConfigAnnotations }}
- annotations:
- {{- toYaml .Values.airflowConfigAnnotations | nindent 4 }}
- {{- end }}
- {{- $Global := . }}
- data:
- # These are system-specified config overrides.
- airflow.cfg: |-
- {{- range $section, $settings := .Values.config }}
- [{{ $section }}]
- {{- range $key, $val := $settings }}
- {{ $key }} = {{ tpl ($val | toString) $Global }}
- {{- end }}
- {{ end }}
- {{- if .Values.airflowLocalSettings }}
- airflow_local_settings.py: |
- {{ tpl .Values.airflowLocalSettings . | nindent 4 }}
- {{- end }}
- {{- if and .Values.dags.gitSync.enabled .Values.dags.gitSync.knownHosts }}
- known_hosts: |
- {{ .Values.dags.gitSync.knownHosts | nindent 4 }}
- {{- end }}
- {{- if or (eq $.Values.executor "LocalKubernetesExecutor") (eq $.Values.executor "KubernetesExecutor") (eq $.Values.executor "CeleryKubernetesExecutor") }}
- {{- if semverCompare ">=1.10.12" .Values.airflowVersion }}
- pod_template_file.yaml: |-
- {{- if .Values.podTemplate }}
- {{ tpl .Values.podTemplate . | nindent 4 }}
- {{- else }}
- {{ tpl (.Files.Get "files/pod-template-file.kubernetes-helm-yaml") . | nindent 4 }}
- {{- end }}
- {{- end }}
- {{- end }}
- {{- if .Values.kerberos.enabled }}
- krb5.conf: |
- {{ tpl .Values.kerberos.config . | nindent 4 }}
- {{- end }}
|