-
Notifications
You must be signed in to change notification settings - Fork 0
/
airflow-all.yml
executable file
·267 lines (267 loc) · 5.27 KB
/
airflow-all.yml
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
apiVersion: v1
kind: Service
metadata:
name: postgres
spec:
type: ClusterIP
selector:
app: airflow
tier: db
ports:
- name: postgres
protocol: TCP
port: 5432
targetPort: postgres
---
apiVersion: v1
kind: Service
metadata:
name: rabbitmq
spec:
type: ClusterIP
selector:
app: airflow
tier: rabbitmq
ports:
- name: node
protocol: TCP
port: 5672
targetPort: node
- name: management
protocol: TCP
port: 15672
targetPort: management
---
apiVersion: v1
kind: Service
metadata:
name: web
spec:
type: NodePort
selector:
app: airflow
tier: web
ports:
- name: web
protocol: TCP
port: 8080
targetPort: web
nodePort: 32080
---
apiVersion: v1
kind: Service
metadata:
name: flower
spec:
type: NodePort
selector:
app: airflow
tier: flower
ports:
- name: flower
protocol: TCP
port: 5555
targetPort: flower
nodePort: 32081
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: postgres
spec:
replicas: 1
template:
metadata:
labels:
app: airflow
tier: db
spec:
containers:
- name: postgres
image: postgres
ports:
- name: postgres
containerPort: 5432
env:
- name: POSTGRES_USER
value: "airflow"
- name: POSTGRES_PASSWORD
value: "airflow"
- name: POSTGRES_DB
value: "airflow"
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: rabbitmq
spec:
replicas: 1
template:
metadata:
labels:
app: airflow
tier: rabbitmq
spec:
restartPolicy: Always
containers:
- name: rabbitmq
image: rabbitmq:3-management
ports:
- name: management
containerPort: 15672
- name: node
containerPort: 5672
env:
- name: RABBITMQ_DEFAULT_USER
value: airflow
- name: RABBITMQ_DEFAULT_PASS
value: airflow
- name: RABBITMQ_DEFAULT_VHOST
value: airflow
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: web
spec:
replicas: 1
template:
metadata:
labels:
app: airflow
tier: web
spec:
restartPolicy: Always
containers:
- name: web
image: kube-centos-airflow
imagePullPolicy: IfNotPresent
volumeMounts:
- name: dags
mountPath: /opt/airflow/dags
- name: logs
mountPath: /opt/airflow/logs
- name: plugins
mountPath: /opt/airflow/plugins
env:
- name: AIRFLOW_HOME
value: "/opt/airflow"
ports:
- name: web
containerPort: 8080
args: ["webserver", "-D"]
volumes:
- name: dags
hostPath:
path: /opt/airflow/dags
- name: logs
hostPath:
path: /opt/airflow/logs
- name: plugins
hostPath:
path: /opt/airflow/plugins
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: flower
spec:
replicas: 1
template:
metadata:
labels:
app: airflow
tier: flower
spec:
restartPolicy: Always
containers:
- name: flower
image: kube-centos-airflow
imagePullPolicy: IfNotPresent
env:
- name: AIRFLOW_HOME
value: "/opt/airflow"
- name: FLOWER_PORT
value: "5555"
ports:
- name: flower
containerPort: 5555
args: ["flower", "-D"]
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: scheduler
spec:
replicas: 1
template:
metadata:
labels:
app: airflow
tier: scheduler
spec:
restartPolicy: Always
containers:
- name: scheduler
image: kube-centos-airflow
imagePullPolicy: IfNotPresent
volumeMounts:
- name: dags
mountPath: /opt/airflow/dags
- name: logs
mountPath: /opt/airflow/logs
- name: plugins
mountPath: /opt/airflow/plugins
env:
- name: AIRFLOW_HOME
value: "/opt/airflow"
args: ["scheduler", "-D"]
volumes:
- name: dags
hostPath:
path: /opt/airflow/dags
- name: logs
hostPath:
path: /opt/airflow/logs
- name: plugins
hostPath:
path: /opt/airflow/plugins
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: worker
spec:
replicas: 1
template:
metadata:
labels:
app: airflow
tier: worker
spec:
restartPolicy: Always
containers:
- name: worker
image: kube-centos-airflow
imagePullPolicy: IfNotPresent
volumeMounts:
- name: dags
mountPath: /opt/airflow/dags
- name: logs
mountPath: /opt/airflow/logs
- name: plugins
mountPath: /opt/airflow/plugins
env:
- name: AIRFLOW_HOME
value: "/opt/airflow"
args: ["worker", "-D"]
volumes:
- name: dags
hostPath:
path: /opt/airflow/dags
- name: logs
hostPath:
path: /opt/airflow/logs
- name: plugins
hostPath:
path: /opt/airflow/plugins