-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_kubernetes_executor.py
129 lines (114 loc) · 4.37 KB
/
example_kubernetes_executor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distribuwith 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.
"""
This is an example dag for using the Kubernetes Executor.
"""
import os
from airflow import DAG
from airflow.example_dags.libs.helper import print_stuff
from airflow.operators.python import PythonOperator
from airflow.utils.dates import days_ago
from kubernetes import client, config
args = {
'owner': 'airflow',
}
from kubernetes.client import models as k8s
with DAG(
dag_id='example_kubernetes_executor',
default_args=args,
schedule_interval=None,
start_date=days_ago(2),
tags=['example', 'example2'],
) as dag:
affinity = {
'podAntiAffinity': {
'requiredDuringSchedulingIgnoredDuringExecution': [
{
'topologyKey': 'kubernetes.io/hostname',
'labelSelector': {
'matchExpressions': [{'key': 'app', 'operator': 'In', 'values': ['airflow']}]
},
}
]
}
}
tolerations = [{'key': 'dedicated', 'operator': 'Equal', 'value': 'airflow'}]
def assert_zip_binary():
"""
Checks whether Zip is installed.
:raises SystemError: if zip is not installed
"""
return_code = os.system("zip")
if return_code != 0:
raise SystemError("The zip binary is not found")
def readSecret():
config.load_incluster_config()
v1 = client.CoreV1Api()
secret = v1.read_namespaced_secret("fernet-key", "airflow")
print(secret.data['fernet-key'])
# You don't have to use any special KubernetesExecutor configuration if you don't want to
start_task = PythonOperator(task_id="start_task", python_callable=print_stuff)
# But you can if you want to
one_task = PythonOperator(
task_id="one_task",
python_callable=print_stuff,
executor_config={"KubernetesExecutor": {"image": "quay.io/inotaykrisztian/airflow:2.1.0-python3.8-2"}},
)
# Use the zip binary, which is only found in this special docker image
two_task = PythonOperator(
task_id="two_task",
python_callable=assert_zip_binary,
executor_config={"KubernetesExecutor": {"image": "quay.io/inotaykrisztian/airflow:2.1.0-python3.8-2"}},
)
# Limit resources on this operator/task with node affinity & tolerations
three_task = PythonOperator(
task_id="three_task",
python_callable=readSecret,
executor_config={
"pod_template_file": "/opt/airflow/pod_template/pod_template_default.yaml",
"pod_override": k8s.V1Pod(
spec=k8s.V1PodSpec(
containers=[
k8s.V1Container(
name="base",
)
],
service_account_name="SA_PLACEHOLDER"
)
),
},
)
# Add arbitrary labels to worker pods
four_task = PythonOperator(
task_id="four_task",
python_callable=print_stuff,
executor_config={
"pod_template_file": "/opt/airflow/pod_template/pod_template_default.yaml",
"pod_override": k8s.V1Pod(
spec=k8s.V1PodSpec(
containers=[
k8s.V1Container(
name="base",
)
],
service_account_name="SA_PLACEHOLDER"
)
),
},
)
start_task >> [one_task, two_task, three_task, four_task]