File tree 5 files changed +19
-0
lines changed
5 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ metadata:
8
8
annotations :
9
9
helm.sh/hook : pre-install,pre-upgrade
10
10
helm.sh/hook-weight : " 0"
11
+ {{- if .Values.bootloader.podAnnotations }}
12
+ {{- include "common.tplvalues.render" (dict "value" .Values.bootloader.podAnnotations "context" $) | nindent 4 }}
13
+ {{- end }}
11
14
spec :
15
+ serviceAccountName : {{ include "airbyte.serviceAccountName" . }}
12
16
restartPolicy : Never
13
17
containers :
14
18
- name : airbyte-bootloader-container
Original file line number Diff line number Diff line change 19
19
{{- include "common.tplvalues.render" (dict "value" .Values.scheduler.podAnnotations "context" $) | nindent 8 }}
20
20
{{- end }}
21
21
spec :
22
+ serviceAccountName : {{ include "airbyte.serviceAccountName" . }}
22
23
{{- if .Values.scheduler.nodeSelector }}
23
24
nodeSelector : {{- include "common.tplvalues.render" (dict "value" .Values.scheduler.nodeSelector "context" $) | nindent 8 }}
24
25
{{- end }}
Original file line number Diff line number Diff line change 21
21
{{- include "common.tplvalues.render" (dict "value" .Values.server.podAnnotations "context" $) | nindent 8 }}
22
22
{{- end }}
23
23
spec :
24
+ serviceAccountName : {{ include "airbyte.serviceAccountName" . }}
24
25
{{- if .Values.server.nodeSelector }}
25
26
nodeSelector : {{- include "common.tplvalues.render" (dict "value" .Values.server.nodeSelector "context" $) | nindent 8 }}
26
27
{{- end }}
Original file line number Diff line number Diff line change 14
14
metadata :
15
15
labels :
16
16
airbyte : temporal
17
+ {{- if .Values.temporal.podAnnotations }}
18
+ annotations :
19
+ {{- include "common.tplvalues.render" (dict "value" .Values.temporal.podAnnotations "context" $) | nindent 8 }}
20
+ {{- end }}
17
21
spec :
22
+ serviceAccountName : {{ include "airbyte.serviceAccountName" . }}
18
23
{{- if .Values.temporal.nodeSelector }}
19
24
nodeSelector : {{- include "common.tplvalues.render" (dict "value" .Values.temporal.nodeSelector "context" $) | nindent 8 }}
20
25
{{- end }}
Original file line number Diff line number Diff line change @@ -472,6 +472,10 @@ bootloader:
472
472
repository : airbyte/bootloader
473
473
pullPolicy : IfNotPresent
474
474
tag : 0.35.27-alpha
475
+
476
+ # # @param bootloader.podAnnotations [object] Add extra annotations to the bootloader pod
477
+ # #
478
+ podAnnotations : {}
475
479
476
480
# # @section Temporal parameters
477
481
# # TODO: Move to consuming temporal from a dedicated helm chart
@@ -494,6 +498,10 @@ temporal:
494
498
type : ClusterIP
495
499
port : 7233
496
500
501
+ # # @param temporal.podAnnotations [object] Add extra annotations to the temporal pod
502
+ # #
503
+ podAnnotations : {}
504
+
497
505
# # @param temporal.nodeSelector [object] Node labels for temporal pod assignment
498
506
# # Ref: https://kubernetes.io/docs/user-guide/node-selection/
499
507
# #
You can’t perform that action at this time.
0 commit comments