@@ -496,36 +496,36 @@ pod-sweeper:
496
496
497
497
server :
498
498
enabled : true
499
- # # worker .replicaCount Number of worker replicas
499
+ # # server .replicaCount Number of server replicas
500
500
replicaCount : 1
501
501
502
- # # worker .image.repository The repository to use for the airbyte worker image.
503
- # # worker .image.pullPolicy the pull policy to use for the airbyte worker image
504
- # # worker .image.tag The airbyte worker image tag. Defaults to the chart's AppVersion
502
+ # # server .image.repository The repository to use for the airbyte server image.
503
+ # # server .image.pullPolicy the pull policy to use for the airbyte server image
504
+ # # server .image.tag The airbyte server image tag. Defaults to the chart's AppVersion
505
505
image :
506
- repository : airbyte/worker
506
+ repository : airbyte/server
507
507
pullPolicy : IfNotPresent
508
508
509
- # # worker .podAnnotations [object] Add extra annotations to the worker pod(s)
509
+ # # server .podAnnotations [object] Add extra annotations to the server pod(s)
510
510
# #
511
511
podAnnotations : {}
512
512
513
- # # worker .containerSecurityContext Security context for the container
513
+ # # server .containerSecurityContext Security context for the container
514
514
# # Examples:
515
515
# # containerSecurityContext:
516
516
# # runAsNonRoot: true
517
517
# # runAsUser: 1000
518
518
# # readOnlyRootFilesystem: true
519
519
containerSecurityContext : {}
520
520
521
- # # Configure extra options for the worker containers' liveness and readiness probes
521
+ # # Configure extra options for the server containers' liveness and readiness probes
522
522
# # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
523
- # # worker .livenessProbe.enabled Enable livenessProbe on the worker
524
- # # worker .livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
525
- # # worker .livenessProbe.periodSeconds Period seconds for livenessProbe
526
- # # worker .livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
527
- # # worker .livenessProbe.failureThreshold Failure threshold for livenessProbe
528
- # # worker .livenessProbe.successThreshold Success threshold for livenessProbe
523
+ # # server .livenessProbe.enabled Enable livenessProbe on the server
524
+ # # server .livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
525
+ # # server .livenessProbe.periodSeconds Period seconds for livenessProbe
526
+ # # server .livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
527
+ # # server .livenessProbe.failureThreshold Failure threshold for livenessProbe
528
+ # # server .livenessProbe.successThreshold Success threshold for livenessProbe
529
529
# #
530
530
livenessProbe :
531
531
enabled : true
@@ -535,12 +535,12 @@ server:
535
535
failureThreshold : 3
536
536
successThreshold : 1
537
537
538
- # # worker .readinessProbe.enabled Enable readinessProbe on the worker
539
- # # worker .readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
540
- # # worker .readinessProbe.periodSeconds Period seconds for readinessProbe
541
- # # worker .readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
542
- # # worker .readinessProbe.failureThreshold Failure threshold for readinessProbe
543
- # # worker .readinessProbe.successThreshold Success threshold for readinessProbe
538
+ # # server .readinessProbe.enabled Enable readinessProbe on the server
539
+ # # server .readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
540
+ # # server .readinessProbe.periodSeconds Period seconds for readinessProbe
541
+ # # server .readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
542
+ # # server .readinessProbe.failureThreshold Failure threshold for readinessProbe
543
+ # # server .readinessProbe.successThreshold Success threshold for readinessProbe
544
544
# #
545
545
readinessProbe :
546
546
enabled : true
@@ -550,14 +550,14 @@ server:
550
550
failureThreshold : 3
551
551
successThreshold : 1
552
552
553
- # # worker resource requests and limits
553
+ # # server resource requests and limits
554
554
# # ref: http://kubernetes.io/docs/user-guide/compute-resources/
555
555
# # We usually recommend not to specify default resources and to leave this as a conscious
556
556
# # choice for the user. This also increases chances charts run on environments with little
557
557
# # resources, such as Minikube. If you do want to specify resources, uncomment the following
558
558
# # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
559
- # # worker .resources.limits [object] The resources limits for the worker container
560
- # # worker .resources.requests [object] The requested resources for the worker container
559
+ # # server .resources.limits [object] The resources limits for the server container
560
+ # # server .resources.requests [object] The requested resources for the server container
561
561
resources :
562
562
# # Example:
563
563
# # limits:
@@ -570,37 +570,37 @@ server:
570
570
# # cpu: 250m
571
571
requests : {}
572
572
573
- # # worker .nodeSelector [object] Node labels for pod assignment
573
+ # # server .nodeSelector [object] Node labels for pod assignment
574
574
# # Ref: https://kubernetes.io/docs/user-guide/node-selection/
575
575
# #
576
576
nodeSelector : {}
577
577
578
- # # worker .tolerations [array] Tolerations for worker pod assignment.
578
+ # # server .tolerations [array] Tolerations for server pod assignment.
579
579
# # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
580
580
# #
581
581
tolerations : []
582
582
583
- # # worker .affinity [object] Affinity and anti-affinity for worker pod assignment.
583
+ # # server .affinity [object] Affinity and anti-affinity for server pod assignment.
584
584
# # ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
585
585
# #
586
586
affinity : {}
587
587
588
- # # worker .log.level The log level to log at.
588
+ # # server .log.level The log level to log at.
589
589
log :
590
590
level : " INFO"
591
591
592
592
593
593
594
- # # worker .extraVolumeMounts [array] Additional volumeMounts for worker container(s).
595
- # # Examples (when using `worker .containerSecurityContext.readOnlyRootFilesystem=true`):
594
+ # # server .extraVolumeMounts [array] Additional volumeMounts for server container(s).
595
+ # # Examples (when using `server .containerSecurityContext.readOnlyRootFilesystem=true`):
596
596
# # extraVolumeMounts:
597
597
# # - name: tmpdir
598
598
# # mountPath: /tmp
599
599
# #
600
600
extraVolumeMounts : []
601
601
602
- # # worker .extraVolumes [array] Additional volumes for worker pod(s).
603
- # # Examples (when using `worker .containerSecurityContext.readOnlyRootFilesystem=true`):
602
+ # # server .extraVolumes [array] Additional volumes for server pod(s).
603
+ # # Examples (when using `server .containerSecurityContext.readOnlyRootFilesystem=true`):
604
604
# # extraVolumes:
605
605
# # - name: tmpdir
606
606
# # emptyDir: {}
0 commit comments