-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
549 lines (473 loc) · 19.9 KB
/
values.yaml
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
## @section Global Parameters
## @param global.imageRegistry Global Docker image registry
## @param global.storageClass Global StorageClass for Persistent Volume(s)
##
global:
imageRegistry: ""
storageClass: ""
## @section Common Parameters
## @param nameOverride String to partially override airbyte.fullname template with a string (will prepend the release name)
##
nameOverride: ""
## @param fullnameOverride String to fully override airbyte.fullname template with a string
##
fullnameOverride: ""
## Pods Service Account
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
## @param serviceAccount.annotations [object] Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
## @param serviceAccount.create Specifies whether a ServiceAccount should be created
## @param serviceAccount.name Name of the service account to use. If not set and create is true, a name is generated using the fullname template.
##
serviceAccount:
create: true
annotations: {}
name: airbyte-admin
## @param version Sets the AIRBYTE_VERSION environment variable. Defaults to Chart.AppVersion.
## If changing the image tags below, you should probably also update this.
version: ""
## @section Webapp Parameters
webapp:
## @param webapp.replicaCount Number of webapp replicas
replicaCount: 1
## @param webapp.image.repository The repository to use for the airbyte webapp image.
## @param webapp.image.pullPolicy the pull policy to use for the airbyte webapp image
## @param webapp.image.tag The airbyte webapp image tag. Defaults to the chart's AppVersion
image:
repository: airbyte/webapp
pullPolicy: IfNotPresent
tag: 0.32.0-alpha
## @param webapp.podAnnotations [object] Add extra annotations to the webapp pod(s)
##
podAnnotations: {}
## @param webapp.service.type The service type to use for the webapp service
## @param webapp.service.port The service port to expose the webapp on
service:
type: ClusterIP
port: 80
## Web app resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param webapp.resources.limits [object] The resources limits for the Web container
## @param webapp.resources.requests [object] The requested resources for the Web container
resources:
## Example:
## limits:
## cpu: 200m
## memory: 1Gi
limits: {}
## Examples:
## requests:
## memory: 256Mi
## cpu: 250m
requests: {}
## @param webapp.nodeSelector [object] Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param webapp.tolerations [array] Tolerations for webapp pod assignment.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## Configure the ingress resource that allows you to access the Airbyte installation.
## ref: http://kubernetes.io/docs/user-guide/ingress/
## @param webapp.ingress.enabled Set to true to enable ingress record generation
## @param webapp.ingress.className Specifies ingressClassName for clusters >= 1.18+
## @param webapp.ingress.hosts Ingress Hosts configuration
## @param webapp.ingress.annotations [object] Ingress annotations done as key:value pairs
## @param webapp.ingress.hosts The list of hostnames to be covered with this ingress record.
## @param webapp.ingress.tls [array] Custom ingress TLS configuration
ingress:
enabled: true
className: ""
annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
konghq.com/override: timeout-airbyte-internal
konghq.com/protocols: http
konghq.com/strip-path: "false"
kubernetes.io/ingress.class: kong-internal
hosts:
- host: airbyte.dev.internal
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
## @param webapp.api.url The webapp API url.
api:
url: /api/v1/
## @param webapp.isDemo Set to true if this is a demo
isDemo: false
## @param webapp.fullstory.enabled Whether or not to enable fullstory
fullstory:
enabled: false
## @param webapp.extraEnv [array] Additional env vars for webapp pod(s).
## Example:
##
## extraEnv:
## - name: SAMPLE_ENV_VAR
## value: "key=sample-value"
extraEnv: []
## @section Scheduler Parameters
scheduler:
## @param scheduler.replicaCount Number of scheduler replicas
replicaCount: 1
## @param scheduler.image.repository The repository to use for the airbyte scheduler image.
## @param scheduler.image.pullPolicy the pull policy to use for the airbyte scheduler image
## @param scheduler.image.tag The airbyte scheduler image tag. Defaults to the chart's AppVersion
image:
repository: airbyte/scheduler
pullPolicy: IfNotPresent
tag: 0.32.0-alpha
## @param scheduler.podAnnotations [object] Add extra annotations to the scheduler pod
##
podAnnotations: {}
## Scheduler resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param scheduler.resources.limits [object] The resources limits for the scheduler container
## @param scheduler.resources.requests [object] The requested resources for the scheduler container
resources:
## Example:
## limits:
## cpu: 200m
## memory: 1Gi
limits: {}
## Examples:
## requests:
## memory: 256Mi
## cpu: 250m
requests: {}
## @param scheduler.nodeSelector [object] Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param scheduler.tolerations [array] Tolerations for scheduler pod assignment.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param scheduler.log.level The log level to log at.
log:
level: "INFO"
## @param scheduler.extraEnv [array] Additional env vars for scheduler pod(s).
## Example:
##
## extraEnv:
## - name: SAMPLE_ENV_VAR
## value: "key=sample-value"
extraEnv: []
## @section Pod Sweeper parameters
podSweeper:
## @param podSweeper.image.repository The image repository to use for the pod sweeper
## @param podSweeper.image.pullPolicy The pull policy for the pod sweeper image
## @param podSweeper.image.tag The pod sweeper image tag to use
image:
repository: bitnami/kubectl
pullPolicy: IfNotPresent
tag: latest
## @param podSweeper.podAnnotations [object] Add extra annotations to the podSweeper pod
##
podAnnotations: {}
## Pod Sweeper app resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param podSweeper.resources.limits [object] The resources limits for the podSweeper container
## @param podSweeper.resources.requests [object] The requested resources for the podSweeper container
resources:
## Example:
## limits:
## cpu: 200m
## memory: 1Gi
limits: {}
## Examples:
## requests:
## memory: 256Mi
## cpu: 250m
requests: {}
## @param podSweeper.nodeSelector [object] Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param podSweeper.tolerations [array] Tolerations for podSweeper pod assignment.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @section Server parameters
server:
## @param server.replicaCount Number of server replicas
replicaCount: 1
## @param server.image.repository The repository to use for the airbyte server image.
## @param server.image.pullPolicy the pull policy to use for the airbyte server image
## @param server.image.tag The airbyte server image tag. Defaults to the chart's AppVersion
image:
repository: airbyte/server
pullPolicy: IfNotPresent
tag: 0.32.0-alpha
## @param server.podAnnotations [object] Add extra annotations to the server pod
##
podAnnotations: {}
## Configure extra options for the server containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param server.livenessProbe.enabled Enable livenessProbe on the server
## @param server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param server.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param server.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param server.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
## @param server.readinessProbe.enabled Enable readinessProbe on the server
## @param server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param server.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param server.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param server.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
## Server app resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param server.resources.limits [object] The resources limits for the server container
## @param server.resources.requests [object] The requested resources for the server container
resources:
## Example:
## limits:
## cpu: 200m
## memory: 1Gi
limits: {}
## Examples:
## requests:
## memory: 256Mi
## cpu: 250m
requests: {}
## @param server.service.type The service type to use for the API server
## @param server.service.port The service port to expose the API server on
service:
type: ClusterIP
port: 8001
## @param server.persistence.accessMode The access mode for the airbyte server pvc
## @param server.persistence.size The size of the pvc to use for the airbyte server pvc
persistence:
size: 1Gi
accessMode: ReadWriteOnce
## @param server.persistence.storageClass The storage class to use for the airbyte server pvc
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: ""
## @param server.nodeSelector [object] Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param server.tolerations [array] Tolerations for server pod assignment.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param server.log.level The log level to log at
log:
level: "INFO"
## @param server.extraEnv [array] Additional env vars for server pod(s).
## Example:
##
## extraEnv:
## - name: SAMPLE_ENV_VAR
## value: "key=sample-value"
extraEnv: []
## @section Worker Parameters
worker:
## @param worker.replicaCount Number of worker replicas
replicaCount: 1
## @param worker.image.repository The repository to use for the airbyte worker image.
## @param worker.image.pullPolicy the pull policy to use for the airbyte worker image
## @param worker.image.tag The airbyte worker image tag. Defaults to the chart's AppVersion
image:
repository: airbyte/worker
pullPolicy: IfNotPresent
tag: 0.32.0-alpha
## @param worker.podAnnotations [object] Add extra annotations to the worker pod(s)
##
podAnnotations: {}
## Configure extra options for the worker containers' liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param worker.livenessProbe.enabled Enable livenessProbe on the worker
## @param worker.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param worker.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param worker.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param worker.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param worker.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
## @param worker.readinessProbe.enabled Enable readinessProbe on the worker
## @param worker.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param worker.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param worker.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param worker.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param worker.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
## worker resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param worker.resources.limits [object] The resources limits for the worker container
## @param worker.resources.requests [object] The requested resources for the worker container
resources:
## Example:
## limits:
## cpu: 200m
## memory: 1Gi
limits: {}
## Examples:
## requests:
## memory: 256Mi
## cpu: 250m
requests: {}
## @param worker.nodeSelector [object] Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param worker.tolerations [array] Tolerations for worker pod assignment.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param worker.log.level The log level to log at.
log:
level: "INFO"
## @param worker.extraEnv [array] Additional env vars for worker pod(s).
## Example:
##
## extraEnv:
## - name: WORKER_POD_TOLERATIONS
## value: "key=airbyte-server,operator=Equals,value=true,effect=NoSchedule"
extraEnv: []
## @section Temporal parameters
## TODO: Move to consuming temporal from a dedicated helm chart
temporal:
## @param temporal.replicaCount The number of temporal replicas to deploy
replicaCount: 1
## @param temporal.image.repository The temporal image repository to use
## @param temporal.image.pullPolicy The pull policy for the temporal image
## @param temporal.image.tag The temporal image tag to use
image:
repository: temporalio/auto-setup
pullPolicy: IfNotPresent
tag: "1.7.0"
## @param temporal.service.type The Kubernetes Service Type
## @param temporal.service.port The temporal port and exposed kubernetes port
service:
type: ClusterIP
port: 7233
## @param temporal.nodeSelector [object] Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param temporal.tolerations [array] Tolerations for pod assignment.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param temporal.extraEnv [array] Additional env vars for temporal pod(s).
## Example:
##
## extraEnv:
## - name: SAMPLE_ENV_VAR
## value: "key=sample-value"
extraEnv: []
## @section Airbyte Database parameters
## PostgreSQL chart configuration
## ref: https://github.com/bitnami/charts/blob/master/bitnami/postgresql/values.yaml
## @param postgresql.enabled Switch to enable or disable the PostgreSQL helm chart
## @param postgresql.postgresqlUsername Airbyte Postgresql username
## @param postgresql.postgresqlPassword Airbyte Postgresql password
## @param postgresql.postgresqlDatabase Airbyte Postgresql database
## @param postgresql.existingSecret Name of an existing secret containing the PostgreSQL password ('postgresql-password' key)
##
postgresql:
enabled: false
postgresqlUsername: airbyte
postgresqlPassword: airbyte
postgresqlDatabase: db-airbyte
## This secret is used in case of postgresql.enabled=true and we would like to specify password for newly created postgresql instance
##
existingSecret: ""
## External PostgreSQL configuration
## All of these values are only used when postgresql.enabled is set to false
## @param externalDatabase.host Database host
## @param externalDatabase.user non-root Username for Airbyte Database
## @param externalDatabase.password Database password
## @param externalDatabase.existingSecret Name of an existing secret resource containing the DB password
## @param externalDatabase.existingSecretPasswordKey Name of an existing secret key containing the DB password
## @param externalDatabase.database Database name
## @param externalDatabase.port Database port number
##
externalDatabase:
host: localhost
user: postgres
password: ZXasqw12
existingSecret: ""
existingSecretPasswordKey: ""
database: airbyte
port: 5432
## @section Minio parameters
## Minio chart configuration
## ref: https://github.com/bitnami/charts/blob/master/bitnami/minio/values.yaml
## @param minio.enabled Switch to enable or disable the Minio helm chart
## @param minio.accessKey.password Minio Access Key
## @param minio.secretKey.password Minio Secret Key
minio:
enabled: false
accessKey:
password: xxxx
secretKey:
password: xxxxx
s3LogBucket: airbyte-log-s3
s3LogBucketRegion: ap-southeast-1
## External Minio configuration
## All of these values are only used when minio.enabled is set to false
## @param externalMinio.host Minio Host
## @param externalMinio.port Minio Port
externalMinio:
host: localhost
port: 9000