File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
docs/content/docs/operations
helm/flink-kubernetes-operator Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ The configurable parameters of the Helm chart and which default values as detail
89
89
| operatorPod.topologySpreadConstraints | Custom topologySpreadConstraints to be added to the operator pod. | |
90
90
| operatorPod.resources | Custom resources block to be added to the operator pod on main container. | |
91
91
| operatorPod.webhook.resources | Custom resources block to be added to the operator pod on flink-webhook container. | |
92
+ | operatorPod.webhook.container.env | Custom env to be added to the flink-webhook container | |
92
93
| operatorPod.tolerations | Custom tolerations to be added to the operator pod. | |
93
94
| operatorServiceAccount.create | Whether to enable operator service account to create for flink-kubernetes-operator. | true |
94
95
| operatorServiceAccount.annotations | The annotations of operator service account. | |
Original file line number Diff line number Diff line change @@ -207,6 +207,9 @@ spec:
207
207
valueFrom :
208
208
fieldRef :
209
209
fieldPath : metadata.namespace
210
+ {{- with .Values.operatorPod.webhook.container.env }}
211
+ {{- toYaml . | nindent 12 }}
212
+ {{- end }}
210
213
resources :
211
214
{{- toYaml .Values.operatorPod.webhook.resources | nindent 12 }}
212
215
securityContext :
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ operatorPod:
62
62
priorityClassName : null
63
63
annotations : {}
64
64
labels : {}
65
+ # The env variables only apply to the operator container in the operator pod
66
+ # TODO: consider making this pod level env variables
65
67
env :
66
68
# - name: ""
67
69
# value: ""
@@ -96,6 +98,10 @@ operatorPod:
96
98
# memory: "512Mi"
97
99
webhook :
98
100
resources : {}
101
+ container :
102
+ env :
103
+ # - name: ""
104
+ # value: ""
99
105
100
106
operatorServiceAccount :
101
107
create : true
You can’t perform that action at this time.
0 commit comments