Make Airflow Worker Stateful Set

There is a need to make the airflow worker a stateful set
so that the name of the pod will be consistent. This will
allow us to properly extract and correlate logs in the
database.

We are also adding pvc for the airflow worker pods so that
the logs persist.

Change-Id: I79917aa02b38672cac13d6148c4ed44007a78d32
This commit is contained in:
Anthony Lin 2018-02-14 20:04:42 +00:00
parent 17c3fb0eec
commit d3419123c3
4 changed files with 111 additions and 17 deletions

View File

@ -0,0 +1,30 @@
{{/*
Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
Licensed 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.
*/}}
{{- if .Values.manifests.service_airflow_worker }}
{{- $envAll := . }}
---
apiVersion: v1
kind: Service
metadata:
name: {{ tuple "airflow_worker" "internal" $envAll | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }}
spec:
ports:
- name: worker
port: {{ tuple "airflow_worker" "internal" "airflow_worker" $envAll | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
selector:
{{ tuple $envAll "airflow" "worker" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
{{- end }}

View File

@ -0,0 +1,32 @@
# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
#
# Licensed 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.
{{- if .Values.manifests.service_discovery_airflow_worker }}
{{- $envAll := . }}
---
apiVersion: v1
kind: Service
metadata:
name: {{ tuple "airflow_worker" "discovery" $envAll | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }}
annotations:
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
spec:
ports:
- name: worker
port: {{ tuple "airflow_worker" "internal" "airflow_worker" $envAll | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
clusterIP: None
selector:
{{ tuple $envAll "airflow" "worker" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
{{- end }}

View File

@ -12,11 +12,10 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
{{- if .Values.manifests.deployment_airflow_worker }} {{- if .Values.manifests.statefulset_airflow_worker }}
{{- $envAll := . }} {{- $envAll := . }}
{{- $dependencies := .Values.dependencies.airflow_server }} {{- $dependencies := .Values.dependencies.airflow_server }}
{{- $mounts_airflow_worker := .Values.pod.mounts.airflow_worker.airflow_worker }}
{{- $mounts_airflow_worker_init := .Values.pod.mounts.airflow_worker.init_container }}
{{- $serviceAccountName := "airflow-worker" }} {{- $serviceAccountName := "airflow-worker" }}
{{ tuple $envAll $dependencies $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }} {{ tuple $envAll $dependencies $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}
--- ---
@ -52,27 +51,23 @@ roleRef:
apiGroup: rbac.authorization.k8s.io apiGroup: rbac.authorization.k8s.io
--- ---
apiVersion: apps/v1beta1 apiVersion: apps/v1beta1
kind: Deployment kind: StatefulSet
metadata: metadata:
name: airflow-worker name: airflow-worker
spec: spec:
serviceName: {{ tuple "airflow_worker" "discovery" $envAll | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }}
podManagementPolicy: "Parallel"
replicas: {{ .Values.pod.replicas.airflow.worker }} replicas: {{ .Values.pod.replicas.airflow.worker }}
{{ tuple $envAll | include "helm-toolkit.snippets.kubernetes_upgrades_deployment" | indent 2 }}
template: template:
metadata: metadata:
labels: labels:
{{ tuple $envAll "airflow" "worker" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }} {{ tuple $envAll "airflow" "worker" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
annotations:
configmap-bin-hash: {{ tuple "configmap-airflow-bin.yaml" . | include "helm-toolkit.utils.hash" }}
configmap-etc-hash: {{ tuple "configmap-airflow-etc.yaml" . | include "helm-toolkit.utils.hash" }}
spec: spec:
serviceAccountName: {{ $serviceAccountName }} serviceAccountName: {{ $serviceAccountName }}
nodeSelector: nodeSelector:
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }} {{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
restartPolicy: Always
terminationGracePeriodSeconds: {{ .Values.pod.lifecycle.termination_grace_period.airflow.timeout | default "30" }}
initContainers: initContainers:
{{ tuple $envAll $dependencies $mounts_airflow_worker_init | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }} {{ tuple $envAll $dependencies list | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
{{- if .Values.prod_environment }} {{- if .Values.prod_environment }}
- name: airflow-shipyard-init - name: airflow-shipyard-init
image: {{ .Values.images.tags.shipyard }} image: {{ .Values.images.tags.shipyard }}
@ -89,6 +84,20 @@ spec:
mountPath: /tmp/airflow/dags/ mountPath: /tmp/airflow/dags/
- name: pod-shipyard-share-airflow-plugins - name: pod-shipyard-share-airflow-plugins
mountPath: /tmp/airflow/plugins/ mountPath: /tmp/airflow/plugins/
- name: worker-perms
image: {{ .Values.images.tags.airflow }}
imagePullPolicy: {{ .Values.images.pull_policy }}
securityContext:
runAsUser: 0
{{ tuple $envAll $envAll.Values.pod.resources.airflow.worker | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
command:
- chown
- -R
- "airflow:airflow"
- {{ .Values.conf.airflow.core.base_log_folder }}
volumeMounts:
- name: airflow-logs
mountPath: {{ .Values.conf.airflow.core.base_log_folder }}
{{- end }} {{- end }}
containers: containers:
- name: airflow-worker - name: airflow-worker
@ -102,7 +111,7 @@ spec:
name: {{ .Values.secrets.postgresql_airflow_db.user }} name: {{ .Values.secrets.postgresql_airflow_db.user }}
key: AIRFLOW_DATABASE_URI key: AIRFLOW_DATABASE_URI
ports: ports:
- containerPort: {{ .Values.network.airflow.worker.port }} - containerPort: {{ tuple "airflow_worker" "internal" "airflow_worker" $envAll | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
args: ["worker"] args: ["worker"]
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
@ -137,7 +146,6 @@ spec:
{{- end }} {{- end }}
- name: airflow-logs - name: airflow-logs
mountPath: {{ .Values.conf.airflow.core.base_log_folder }} mountPath: {{ .Values.conf.airflow.core.base_log_folder }}
{{ if $mounts_airflow_worker.volumeMounts }}{{ toYaml $mounts_airflow_worker.volumeMounts | indent 12 }}{{ end }}
volumes: volumes:
- name: airflow-etc - name: airflow-etc
configMap: configMap:
@ -156,8 +164,15 @@ spec:
emptyDir: {} emptyDir: {}
- name: pod-shipyard-share-airflow-plugins - name: pod-shipyard-share-airflow-plugins
emptyDir: {} emptyDir: {}
- name: airflow-logs volumeClaimTemplates:
emptyDir: {} - metadata:
name: airflow-logs
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: {{ .Values.volume_worker.size }}
storageClassName: {{ .Values.volume_worker.class_name }}
{{ else }} {{ else }}
- name: airflow-dags - name: airflow-dags
hostPath: hostPath:
@ -175,5 +190,4 @@ spec:
hostPath: hostPath:
path: /var/lib/docker path: /var/lib/docker
{{- end }} {{- end }}
{{ if $mounts_airflow_worker.volumes }}{{ toYaml $mounts_airflow_worker.volumes | indent 8 }}{{ end }}
{{- end }} {{- end }}

View File

@ -131,6 +131,10 @@ dependencies:
- service: oslo_messaging - service: oslo_messaging
endpoint: internal endpoint: internal
volume_worker:
class_name: general
size: 5Gi
# typically overriden by environmental # typically overriden by environmental
# values, but should include all endpoints # values, but should include all endpoints
# required by this chart # required by this chart
@ -211,6 +215,18 @@ endpoints:
default: http default: http
host_fqdn_override: host_fqdn_override:
default: null default: null
airflow_worker:
name: airflow-worker
hosts:
default: airflow-worker
discovery: airflow-worker-discovery
host_fqdn_override:
default: null
path: null
scheme: 'http'
port:
airflow_worker:
default: 8793
postgresql_shipyard_db: postgresql_shipyard_db:
name: postgresql_shipyard_db name: postgresql_shipyard_db
auth: auth:
@ -582,7 +598,7 @@ manifests:
deployment_airflow_scheduler: true deployment_airflow_scheduler: true
deployment_shipyard: true deployment_shipyard: true
deployment_airflow_web: true deployment_airflow_web: true
deployment_airflow_worker: true statefulset_airflow_worker: true
ingress_airflow_api: true ingress_airflow_api: true
ingress_shipyard_api: true ingress_shipyard_api: true
job_shipyard_db_init: true job_shipyard_db_init: true
@ -600,3 +616,5 @@ manifests:
service_shipyard: true service_shipyard: true
service_shipyard_ingress: true service_shipyard_ingress: true
service_airflow_web: true service_airflow_web: true
service_airflow_worker: true
service_discovery_airflow_worker: true