File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
content.zh/docs/operations
helm/flink-kubernetes-operator/templates Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ The configurable parameters of the Helm chart and which default values as detail
76
76
| rbac.create | Whether to enable RBAC to create for said namespaces. | true |
77
77
| rbac.nodesRule.create | Whether to add RBAC rule to list nodes which is needed for rest-service exposed as NodePort type. | false |
78
78
| operatorPod.annotations | Custom annotations to be added to the operator pod (but not the deployment). | |
79
- | operatorPod.labels | Custom labels to be added to the operator pod (but not the deployment) . | |
79
+ | operatorPod.labels | Custom labels to be added to the operator pod and deployment. | |
80
80
| operatorPod.env | Custom env to be added to the operator pod. | |
81
81
| operatorPod.envFrom | Custom envFrom settings to be added to the operator pod. | |
82
82
| operatorPod.dnsPolicy | DNS policy to be used by the operator pod. | |
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ The configurable parameters of the Helm chart and which default values as detail
76
76
| rbac.create | Whether to enable RBAC to create for said namespaces. | true |
77
77
| rbac.nodesRule.create | Whether to add RBAC rule to list nodes which is needed for rest-service exposed as NodePort type. | false |
78
78
| operatorPod.annotations | Custom annotations to be added to the operator pod (but not the deployment). | |
79
- | operatorPod.labels | Custom labels to be added to the operator pod (but not the deployment) . | |
79
+ | operatorPod.labels | Custom labels to be added to the operator pod and deployment. | |
80
80
| operatorPod.env | Custom env to be added to the operator pod. | |
81
81
| operatorPod.envFrom | Custom envFrom settings to be added to the operator pod. | |
82
82
| operatorPod.dnsPolicy | DNS policy to be used by the operator pod. | |
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ metadata:
23
23
namespace : {{ .Release.Namespace }}
24
24
labels :
25
25
{{- include "flink-operator.labels" . | nindent 4 }}
26
+ {{- if index (.Values.operatorPod) "labels" }}
27
+ {{- with .Values.operatorPod.labels }}
28
+ {{- toYaml . | nindent 4 }}
29
+ {{- end }}
30
+ {{- end }}
26
31
spec :
27
32
replicas : {{ .Values.replicas }}
28
33
strategy :
You can’t perform that action at this time.
0 commit comments