Skip to content

Commit

Permalink
Update helm charts with replica count value (#21796)
Browse files Browse the repository at this point in the history
  • Loading branch information
xpuska513 authored Jan 24, 2023
1 parent e4a7736 commit 869dd07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/airbyte-cron/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
{{ toYaml (mergeOverwrite .Values.extraLabels .Values.global.extraLabels) | nindent 4 }}
{{- end }}
spec:
replicas: 1
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "airbyte.selectorLabels" . | nindent 6 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/airbyte-pod-sweeper/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
{{- include "airbyte.labels" . | nindent 4 }}
spec:
replicas: 1
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "airbyte.selectorLabels" . | nindent 6 }}
Expand Down
4 changes: 3 additions & 1 deletion charts/airbyte-pod-sweeper/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,4 +222,6 @@ extraVolumes: []
## podSweeper.timeToDeletePods.error Time to remove pods on error status (minutes).
timeToDeletePods:
completed: 120
error: 1440
error: 1440

replicaCount: 1

0 comments on commit 869dd07

Please sign in to comment.