Skip to content

Commit 4581bba

Browse files
authored
Fix wrongly committed Helm Chart improvement (strimzi#5106)
* Revert "Feature/lables exclude in value (strimzi#5083)" This reverts commit 936f847. Signed-off-by: Jakub Scholz <[email protected]> * Move Helm Chart changes to the right place Signed-off-by: Jakub Scholz <[email protected]>
1 parent 4922c7d commit 4581bba

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

helm-charts/helm3/strimzi-kafka-operator/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ the documentation for more details.
169169
| `readinessProbe.periodSeconds` | Readiness probe period in seconds | 30 |
170170
| `imageRegistryOverride` | Override all image registry config | `nil` |
171171
| `imageRepositoryOverride` | Override all image repository config | `nil` |
172-
| `labelsExclusionPattern` | Override the exclude pattern for exclude some labels | `""`
173172
| `imageTagOverride` | Override all image tag config | `nil` |
174173
| `createGlobalResources` | Allow creation of cluster-scoped resources| `true` |
175174
| `tolerations` | Add tolerations to Operator Pod | `[]` |

helm-charts/helm3/strimzi-kafka-operator/templates/060-Deployment-strimzi-cluster-operator.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ spec:
107107
value: {{ .Values.kubernetesServiceDnsDomain | quote }}{{ end }}
108108
- name: STRIMZI_FEATURE_GATES
109109
value: {{ .Values.featureGates | quote }}
110-
{{- if .Values.labelsExclusionPattern }}
111-
- name: STRIMZI_LABELS_EXCLUSION_PATTERN
112-
value: {{ .Values.labelsExclusionPattern | quote }}
113-
{{- end }}
114110
livenessProbe:
115111
httpGet:
116112
path: /healthy

helm-charts/helm3/strimzi-kafka-operator/values.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -144,5 +144,3 @@ imageRepositoryOverride: ""
144144
# Override the docker image tag used by all Strimzi images
145145
imageTagOverride: ""
146146
createGlobalResources: true
147-
# Override the exclude pattern for exclude some labels
148-
labelsExclusionPattern: ""

packaging/helm-charts/helm3/strimzi-kafka-operator/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ the documentation for more details.
177177
| `labels` | Add labels to Operator Pod | `{}` |
178178
| `nodeSelector` | Add a node selector to Operator Pod | `{}` |
179179
| `featureGates` | Feature Gates configuration | `` |
180+
| `labelsExclusionPattern` | Override the exclude pattern for exclude some labels | `""`
180181

181182
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
182183

packaging/helm-charts/helm3/strimzi-kafka-operator/templates/060-Deployment-strimzi-cluster-operator.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ spec:
107107
value: {{ .Values.kubernetesServiceDnsDomain | quote }}{{ end }}
108108
- name: STRIMZI_FEATURE_GATES
109109
value: {{ .Values.featureGates | quote }}
110+
{{- if .Values.labelsExclusionPattern }}
111+
- name: STRIMZI_LABELS_EXCLUSION_PATTERN
112+
value: {{ .Values.labelsExclusionPattern | quote }}
113+
{{- end }}
110114
livenessProbe:
111115
httpGet:
112116
path: /healthy

packaging/helm-charts/helm3/strimzi-kafka-operator/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,5 @@ imageRepositoryOverride: ""
144144
# Override the docker image tag used by all Strimzi images
145145
imageTagOverride: ""
146146
createGlobalResources: true
147+
# Override the exclude pattern for exclude some labels
148+
labelsExclusionPattern: ""

0 commit comments

Comments
 (0)