123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- # 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 Webserver Deployment
- #################################
- {{- $nodeSelector := or .Values.webserver.nodeSelector .Values.nodeSelector }}
- {{- $affinity := or .Values.webserver.affinity .Values.affinity }}
- {{- $tolerations := or .Values.webserver.tolerations .Values.tolerations }}
- {{- $topologySpreadConstraints := or .Values.webserver.topologySpreadConstraints .Values.topologySpreadConstraints }}
- {{- $securityContext := include "airflowSecurityContext" (list . .Values.webserver) }}
- kind: Deployment
- apiVersion: apps/v1
- metadata:
- name: {{ .Release.Name }}-webserver
- labels:
- tier: airflow
- component: webserver
- release: {{ .Release.Name }}
- chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
- heritage: {{ .Release.Service }}
- {{- with .Values.labels }}
- {{ toYaml . | indent 4 }}
- {{- end }}
- spec:
- replicas: {{ .Values.webserver.replicas }}
- strategy:
- {{- if .Values.webserver.strategy }}
- {{- toYaml .Values.webserver.strategy | nindent 4 }}
- {{- else }}
- {{- if semverCompare ">=2.0.0" .Values.airflowVersion }}
- # Here we define the rolling update strategy
- # - maxSurge define how many pod we can add at a time
- # - maxUnavailable define how many pod can be unavailable
- # during the rolling update
- # Setting maxUnavailable to 0 would make sure we have the appropriate
- # capacity during the rolling update.
- # You can also use percentage based value instead of integer.
- type: RollingUpdate
- rollingUpdate:
- maxSurge: 1
- maxUnavailable: 0
- {{- else }}
- type: Recreate
- {{- end}}
- {{- end}}
- selector:
- matchLabels:
- tier: airflow
- component: webserver
- release: {{ .Release.Name }}
- template:
- metadata:
- labels:
- tier: airflow
- component: webserver
- release: {{ .Release.Name }}
- {{- with .Values.labels }}
- {{ toYaml . | indent 8 }}
- {{- end }}
- annotations:
- checksum/metadata-secret: {{ include (print $.Template.BasePath "/secrets/metadata-connection-secret.yaml") . | sha256sum }}
- checksum/pgbouncer-config-secret: {{ include (print $.Template.BasePath "/secrets/pgbouncer-config-secret.yaml") . | sha256sum }}
- checksum/webserver-secret-key: {{ include (print $.Template.BasePath "/secrets/webserver-secret-key-secret.yaml") . | sha256sum }}
- checksum/airflow-config: {{ include (print $.Template.BasePath "/configmaps/configmap.yaml") . | sha256sum }}
- checksum/webserver-config: {{ include (print $.Template.BasePath "/configmaps/webserver-configmap.yaml") . | sha256sum }}
- checksum/extra-configmaps: {{ include (print $.Template.BasePath "/configmaps/extra-configmaps.yaml") . | sha256sum }}
- checksum/extra-secrets: {{ include (print $.Template.BasePath "/secrets/extra-secrets.yaml") . | sha256sum }}
- {{- if .Values.airflowPodAnnotations }}
- {{- toYaml .Values.airflowPodAnnotations | nindent 8 }}
- {{- end }}
- {{- if .Values.webserver.podAnnotations }}
- {{- toYaml .Values.webserver.podAnnotations | nindent 8 }}
- {{- end }}
- spec:
- serviceAccountName: {{ include "webserver.serviceAccountName" . }}
- {{- if .Values.webserver.priorityClassName }}
- priorityClassName: {{ .Values.webserver.priorityClassName }}
- {{- end }}
- nodeSelector:
- {{ toYaml $nodeSelector | indent 8 }}
- affinity:
- {{- if $affinity }}
- {{ toYaml $affinity | indent 8 }}
- {{- else }}
- podAntiAffinity:
- preferredDuringSchedulingIgnoredDuringExecution:
- - podAffinityTerm:
- labelSelector:
- matchLabels:
- component: webserver
- topologyKey: kubernetes.io/hostname
- weight: 100
- {{- end }}
- tolerations:
- {{ toYaml $tolerations | indent 8 }}
- topologySpreadConstraints:
- {{ toYaml $topologySpreadConstraints | indent 8 }}
- restartPolicy: Always
- securityContext: {{ $securityContext | nindent 8 }}
- {{- if or .Values.registry.secretName .Values.registry.connection }}
- imagePullSecrets:
- - name: {{ template "registry_secret" . }}
- {{- end }}
- initContainers:
- {{- if .Values.webserver.waitForMigrations.enabled }}
- - name: wait-for-airflow-migrations
- resources:
- {{ toYaml .Values.webserver.resources | indent 12 }}
- image: {{ template "airflow_image_for_migrations" . }}
- imagePullPolicy: {{ .Values.images.airflow.pullPolicy }}
- volumeMounts:
- - name: config
- mountPath: {{ template "airflow_config_path" . }}
- subPath: airflow.cfg
- readOnly: true
- args:
- {{- include "wait-for-migrations-command" . | indent 10 }}
- envFrom:
- {{- include "custom_airflow_environment_from" . | default "\n []" | indent 10 }}
- env:
- {{- include "custom_airflow_environment" . | indent 10 }}
- {{- include "standard_airflow_environment" . | indent 10 }}
- {{- end }}
- {{- if and (.Values.dags.gitSync.enabled) (not .Values.dags.persistence.enabled) (semverCompare "<2.0.0" .Values.airflowVersion) }}
- {{- include "git_sync_container" (dict "Values" .Values "is_init" "true") | nindent 8 }}
- {{- end }}
- {{- if .Values.webserver.extraInitContainers }}
- {{- toYaml .Values.webserver.extraInitContainers | nindent 8 }}
- {{- end }}
- containers:
- - name: webserver
- image: {{ template "airflow_image" . }}
- imagePullPolicy: {{ .Values.images.airflow.pullPolicy }}
- {{- if .Values.webserver.command }}
- command: {{ tpl (toYaml .Values.webserver.command) . | nindent 12 }}
- {{- end }}
- {{- if .Values.webserver.args }}
- args: {{ tpl (toYaml .Values.webserver.args) . | nindent 12 }}
- {{- end }}
- resources:
- {{ toYaml .Values.webserver.resources | indent 12 }}
- volumeMounts:
- {{- if semverCompare ">=1.10.12" .Values.airflowVersion }}
- - name: config
- mountPath: {{ include "airflow_pod_template_file" . }}/pod_template_file.yaml
- subPath: pod_template_file.yaml
- readOnly: true
- {{- end }}
- - name: config
- mountPath: {{ template "airflow_config_path" . }}
- subPath: airflow.cfg
- readOnly: true
- {{- if .Values.webserver.webserverConfig }}
- - name: webserver-config
- mountPath: {{ template "airflow_webserver_config_path" . }}
- subPath: webserver_config.py
- readOnly: true
- {{- end }}
- {{- if .Values.airflowLocalSettings }}
- - name: config
- mountPath: {{ template "airflow_local_setting_path" . }}
- subPath: airflow_local_settings.py
- readOnly: true
- {{- end }}
- {{- if and (semverCompare "<2.0.0" .Values.airflowVersion) (or .Values.dags.gitSync.enabled .Values.dags.persistence.enabled) }}
- {{- include "airflow_dags_mount" . | nindent 12 }}
- {{- end }}
- {{- if .Values.logs.persistence.enabled }}
- - name: logs
- mountPath: {{ template "airflow_logs" . }}
- {{- end }}
- {{- if .Values.webserver.extraVolumeMounts }}
- {{ toYaml .Values.webserver.extraVolumeMounts | indent 12 }}
- {{- end }}
- ports:
- - name: airflow-ui
- containerPort: {{ .Values.ports.airflowUI }}
- livenessProbe:
- httpGet:
- path: {{if .Values.config.webserver.base_url }}{{- with urlParse (tpl .Values.config.webserver.base_url .) }}{{ .path }}{{end}}{{end}}/health
- port: {{ .Values.ports.airflowUI }}
- {{- if .Values.config.webserver.base_url}}
- httpHeaders:
- - name: Host
- value: {{ regexReplaceAll ":\\d+$" (urlParse (tpl .Values.config.webserver.base_url .)).host "" }}
- {{- end }}
- initialDelaySeconds: {{ .Values.webserver.livenessProbe.initialDelaySeconds | default 15 }}
- timeoutSeconds: {{ .Values.webserver.livenessProbe.timeoutSeconds | default 30 }}
- failureThreshold: {{ .Values.webserver.livenessProbe.failureThreshold | default 20 }}
- periodSeconds: {{ .Values.webserver.livenessProbe.periodSeconds | default 5 }}
- readinessProbe:
- httpGet:
- path: {{if .Values.config.webserver.base_url }}{{- with urlParse (tpl .Values.config.webserver.base_url .) }}{{ .path }}{{end}}{{end}}/health
- port: {{ .Values.ports.airflowUI }}
- {{- if .Values.config.webserver.base_url}}
- httpHeaders:
- - name: Host
- value: {{ regexReplaceAll ":\\d+$" (urlParse (tpl .Values.config.webserver.base_url .)).host "" }}
- {{- end }}
- initialDelaySeconds: {{ .Values.webserver.readinessProbe.initialDelaySeconds | default 15 }}
- timeoutSeconds: {{ .Values.webserver.readinessProbe.timeoutSeconds | default 30 }}
- failureThreshold: {{ .Values.webserver.readinessProbe.failureThreshold | default 20 }}
- periodSeconds: {{ .Values.webserver.readinessProbe.periodSeconds | default 5 }}
- envFrom:
- {{- include "custom_airflow_environment_from" . | default "\n []" | indent 10 }}
- env:
- {{- include "custom_airflow_environment" . | indent 10 }}
- {{- include "standard_airflow_environment" . | indent 10 }}
- {{- if and (.Values.dags.gitSync.enabled) (not .Values.dags.persistence.enabled) (semverCompare "<2.0.0" .Values.airflowVersion) }}
- {{- include "git_sync_container" . | indent 8 }}
- {{- end }}
- {{- if .Values.webserver.extraContainers }}
- {{- toYaml .Values.webserver.extraContainers | nindent 8 }}
- {{- end }}
- volumes:
- - name: config
- configMap:
- name: {{ template "airflow_config" . }}
- {{- if .Values.webserver.webserverConfig }}
- - name: webserver-config
- configMap:
- name: {{ .Release.Name }}-webserver-config
- {{- end }}
- {{- if (semverCompare "<2.0.0" .Values.airflowVersion) }}
- {{- if .Values.dags.persistence.enabled }}
- - name: dags
- persistentVolumeClaim:
- claimName: {{ template "airflow_dags_volume_claim" . }}
- {{- else if .Values.dags.gitSync.enabled }}
- - name: dags
- emptyDir: {}
- {{- if .Values.dags.gitSync.sshKeySecret }}
- {{- include "git_sync_ssh_key_volume" . | indent 8 }}
- {{- end }}
- {{- end }}
- {{- end }}
- {{- if .Values.logs.persistence.enabled }}
- - name: logs
- persistentVolumeClaim:
- claimName: {{ template "airflow_logs_volume_claim" . }}
- {{- end }}
- {{- if .Values.webserver.extraVolumes }}
- {{ toYaml .Values.webserver.extraVolumes | indent 8 }}
- {{- end }}
|