Skip to content

Commit 64cdc25

Browse files
fix!: Fix typo flagsValidatonEnabled into flagsValidationEnabled (#707)
Signed-off-by: kimsehwan96 <sktpghks138@gmail.com> Signed-off-by: Todd Baert <todd.baert@dynatrace.com> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
1 parent 7ace54d commit 64cdc25

4 files changed

+6
-6
lines changed

chart/open-feature-operator/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,15 @@ The command removes all the Kubernetes components associated with the chart and
177177
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | Sets cpu resource requests for kube-rbac-proxy. | `5m` |
178178
| `controllerManager.kubeRbacProxy.resources.requests.memory` | Sets memory resource requests for kube-rbac-proxy. | `64Mi` |
179179
| `controllerManager.manager.image.repository` | Sets the image for the operator. | `ghcr.io/open-feature/open-feature-operator` |
180-
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.7.1` |
180+
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.7.2` |
181181
| `controllerManager.manager.resources.limits.cpu` | Sets cpu resource limits for operator. | `500m` |
182182
| `controllerManager.manager.resources.limits.memory` | Sets memory resource limits for operator. | `128Mi` |
183183
| `controllerManager.manager.resources.requests.cpu` | Sets cpu resource requests for operator. | `10m` |
184184
| `controllerManager.manager.resources.requests.memory` | Sets memory resource requests for operator. | `64Mi` |
185185
| `controllerManager.manager.hostNetwork` | Should the injector pods run on the host network (useful when using an alternate CNI in EKS) | `false` |
186186
| `controllerManager.manager.dnsPolicy` | Pod DNS resolution scheme. Should be `ClusterFirstWithHostNet` if hostNetwork is true, `ClusterFirst` otherwise. | `ClusterFirst` |
187187
| `controllerManager.replicas` | Sets number of replicas of the OpenFeature operator pod. | `1` |
188-
| `managerConfig.flagsValidatonEnabled` | Enables the validating webhook for FeatureFlag CR. | `true` |
188+
| `managerConfig.flagsValidationEnabled` | Enables the validating webhook for FeatureFlag CR. | `true` |
189189
| `managerConfig.controllerManagerConfigYaml.health.healthProbeBindAddress` | Sets the bind address for health probes. | `:8081` |
190190
| `managerConfig.controllerManagerConfigYaml.metrics.bindAddress` | Sets the bind address for metrics (combined with bindPort). | `127.0.0.1` |
191191
| `managerConfig.controllerManagerConfigYaml.metrics.bindPort` | Sets the bind port for metrics. | `8080` |

chart/open-feature-operator/templates/admissionregistration.k8s.io_v1_validatingwebhookconfiguration_open-feature-operator-validating-webhook-configuration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if eq .Values.managerConfig.flagsValidatonEnabled "true" }}
1+
{{ if eq .Values.managerConfig.flagsValidationEnabled "true" }}
22
apiVersion: admissionregistration.k8s.io/v1
33
kind: ValidatingWebhookConfiguration
44
metadata:

chart/open-feature-operator/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ controllerManager:
158158
replicas: 1
159159

160160
managerConfig:
161-
## @param managerConfig.flagsValidatonEnabled Enables the validating webhook for FeatureFlag CR.
162-
flagsValidatonEnabled: "true"
161+
## @param managerConfig.flagsValidationEnabled Enables the validating webhook for FeatureFlag CR.
162+
flagsValidationEnabled: "true"
163163
controllerManagerConfigYaml:
164164
health:
165165
## @param managerConfig.controllerManagerConfigYaml.health.healthProbeBindAddress Sets the bind address for health probes.

config/overlays/helm/manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
- name: FLAGD_DEBUG_LOGGING
8585
value: "{{ .Values.flagdConfiguration.debugLogging }}"
8686
- name: FLAGS_VALIDATION_ENABLED
87-
value: "{{ .Values.managerConfig.flagsValidatonEnabled }}"
87+
value: "{{ .Values.managerConfig.flagsValidationEnabled }}"
8888
- name: IN_PROCESS_PORT
8989
value: "{{ .Values.inProcessConfiguration.port }}"
9090
- name: IN_PROCESS_HOST

0 commit comments

Comments
 (0)