Skip to content

Commit f2c514d

Browse files
authored
fix incorrect image used for server in helm chart (#16806)
1 parent 1c0d237 commit f2c514d

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

charts/airbyte/values.yaml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -496,36 +496,36 @@ pod-sweeper:
496496

497497
server:
498498
enabled: true
499-
## worker.replicaCount Number of worker replicas
499+
## server.replicaCount Number of server replicas
500500
replicaCount: 1
501501

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
505505
image:
506-
repository: airbyte/worker
506+
repository: airbyte/server
507507
pullPolicy: IfNotPresent
508508

509-
## worker.podAnnotations [object] Add extra annotations to the worker pod(s)
509+
## server.podAnnotations [object] Add extra annotations to the server pod(s)
510510
##
511511
podAnnotations: {}
512512

513-
## worker.containerSecurityContext Security context for the container
513+
## server.containerSecurityContext Security context for the container
514514
## Examples:
515515
## containerSecurityContext:
516516
## runAsNonRoot: true
517517
## runAsUser: 1000
518518
## readOnlyRootFilesystem: true
519519
containerSecurityContext: {}
520520

521-
## Configure extra options for the worker containers' liveness and readiness probes
521+
## Configure extra options for the server containers' liveness and readiness probes
522522
## 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
529529
##
530530
livenessProbe:
531531
enabled: true
@@ -535,12 +535,12 @@ server:
535535
failureThreshold: 3
536536
successThreshold: 1
537537

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
544544
##
545545
readinessProbe:
546546
enabled: true
@@ -550,14 +550,14 @@ server:
550550
failureThreshold: 3
551551
successThreshold: 1
552552

553-
## worker resource requests and limits
553+
## server resource requests and limits
554554
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
555555
## We usually recommend not to specify default resources and to leave this as a conscious
556556
## choice for the user. This also increases chances charts run on environments with little
557557
## resources, such as Minikube. If you do want to specify resources, uncomment the following
558558
## 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
561561
resources:
562562
## Example:
563563
## limits:
@@ -570,37 +570,37 @@ server:
570570
## cpu: 250m
571571
requests: {}
572572

573-
## worker.nodeSelector [object] Node labels for pod assignment
573+
## server.nodeSelector [object] Node labels for pod assignment
574574
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
575575
##
576576
nodeSelector: {}
577577

578-
## worker.tolerations [array] Tolerations for worker pod assignment.
578+
## server.tolerations [array] Tolerations for server pod assignment.
579579
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
580580
##
581581
tolerations: []
582582

583-
## worker.affinity [object] Affinity and anti-affinity for worker pod assignment.
583+
## server.affinity [object] Affinity and anti-affinity for server pod assignment.
584584
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
585585
##
586586
affinity: {}
587587

588-
## worker.log.level The log level to log at.
588+
## server.log.level The log level to log at.
589589
log:
590590
level: "INFO"
591591

592592

593593

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`):
596596
## extraVolumeMounts:
597597
## - name: tmpdir
598598
## mountPath: /tmp
599599
##
600600
extraVolumeMounts: []
601601

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`):
604604
## extraVolumes:
605605
## - name: tmpdir
606606
## emptyDir: {}

0 commit comments

Comments
 (0)