Commit 85681cf 1 parent ded2b65 commit 85681cf Copy full SHA for 85681cf
File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ metadata:
14
14
spec :
15
15
serviceAccountName : {{ include "airbyte.serviceAccountName" . }}
16
16
restartPolicy : Never
17
+ {{- if .Values.bootloader.nodeSelector }}
18
+ nodeSelector : {{- include "common.tplvalues.render" (dict "value" .Values.bootloader.nodeSelector "context" $) | nindent 8 }}
19
+ {{- end }}
20
+ {{- if .Values.bootloader.tolerations }}
21
+ tolerations : {{- include "common.tplvalues.render" (dict "value" .Values.bootloader.tolerations "context" $) | nindent 8 }}
22
+ {{- end }}
17
23
containers :
18
24
- name : airbyte-bootloader-container
19
25
image : {{ include "airbyte.bootloaderImage" . }}
Original file line number Diff line number Diff line change @@ -705,6 +705,16 @@ bootloader:
705
705
# #
706
706
podAnnotations : {}
707
707
708
+ # # @param bootloader.nodeSelector [object] Node labels for pod assignment
709
+ # # Ref: https://kubernetes.io/docs/user-guide/node-selection/
710
+ # #
711
+ nodeSelector : {}
712
+
713
+ # # @param bootloader.tolerations [array] Tolerations for worker pod assignment.
714
+ # # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
715
+ # #
716
+ tolerations : []
717
+
708
718
# # @section Temporal parameters
709
719
# # TODO: Move to consuming temporal from a dedicated helm chart
710
720
You can’t perform that action at this time.
0 commit comments