You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`controllerManager.kubeRbacProxy.image.repository`| Sets the image for the kube-rbac-proxy. |`gcr.io/kubebuilder/kube-rbac-proxy`|
164
+
|`controllerManager.kubeRbacProxy.image.tag`| Sets the version tag for the kube-rbac-proxy. |`v0.14.1`|
165
+
|`controllerManager.kubeRbacProxy.resources.limits.cpu`| Sets cpu resource limits for kube-rbac-proxy. |`500m`|
166
+
|`controllerManager.kubeRbacProxy.resources.limits.memory`| Sets memory resource limits for kube-rbac-proxy. |`128Mi`|
167
+
|`controllerManager.kubeRbacProxy.resources.requests.cpu`| Sets cpu resource requests for kube-rbac-proxy. |`5m`|
168
+
|`controllerManager.kubeRbacProxy.resources.requests.memory`| Sets memory resource requests for kube-rbac-proxy. |`64Mi`|
169
+
|`controllerManager.manager.image.repository`| Sets the image for the operator. |`ghcr.io/open-feature/open-feature-operator`|
170
+
|`controllerManager.manager.image.tag`| Sets the version tag for the operator. |`v0.6.1`|
171
+
|`controllerManager.manager.resources.limits.cpu`| Sets cpu resource limits for operator. |`500m`|
172
+
|`controllerManager.manager.resources.limits.memory`| Sets memory resource limits for operator. |`128Mi`|
173
+
|`controllerManager.manager.resources.requests.cpu`| Sets cpu resource requests for operator. |`10m`|
174
+
|`controllerManager.manager.resources.requests.memory`| Sets memory resource requests for operator. |`64Mi`|
175
+
|`controllerManager.manager.hostNetwork`| Should the injector pods run on the host network (useful when using an alternate CNI in EKS) |`false`|
176
+
|`controllerManager.manager.dnsPolicy`| Pod DNS resolution scheme. Should be `ClusterFirstWithHostNet` if hostNetwork is true, `ClusterFirst` otherwise. |`ClusterFirst`|
177
+
|`controllerManager.replicas`| Sets number of replicas of the OpenFeature operator pod. |`1`|
178
+
|`managerConfig.flagsValidatonEnabled`| Enables the validating webhook for FeatureFlag CR. |`true`|
179
+
|`managerConfig.controllerManagerConfigYaml.health.healthProbeBindAddress`| Sets the bind address for health probes. |`:8081`|
180
+
|`managerConfig.controllerManagerConfigYaml.metrics.bindAddress`| Sets the bind address for metrics. |`127.0.0.1:8080`|
181
+
|`managerConfig.controllerManagerConfigYaml.webhook.port`| Sets the bind address for webhook. |`9443`|
Copy file name to clipboardexpand all lines: chart/open-feature-operator/values.yaml
+4
Original file line number
Diff line number
Diff line change
@@ -137,6 +137,10 @@ controllerManager:
137
137
cpu: 10m
138
138
## @param controllerManager.manager.resources.requests.memory Sets memory resource requests for operator.
139
139
memory: 64Mi
140
+
## @param controllerManager.manager.hostNetwork Should the injector pods run on the host network (useful when using an alternate CNI in EKS)
141
+
hostNetwork: false
142
+
## @param controllerManager.manager.dnsPolicy Pod DNS resolution scheme. Should be `ClusterFirstWithHostNet` if hostNetwork is true, `ClusterFirst` otherwise.
143
+
dnsPolicy: ClusterFirst
140
144
## @param controllerManager.replicas Sets number of replicas of the OpenFeature operator pod.
0 commit comments