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
* add otel collector uri flag ([#513](https://github.com/open-feature/open-feature-operator/issues/513)) ([31d8d5a](https://github.com/open-feature/open-feature-operator/commit/31d8d5a4f9f1132d3b1b517c3acb76c2cb42e0c7))
10
+
11
+
12
+
### 🧹 Chore
13
+
14
+
***deps:** update actions/setup-node action to v3.7.0 ([#504](https://github.com/open-feature/open-feature-operator/issues/504)) ([2f78b83](https://github.com/open-feature/open-feature-operator/commit/2f78b836de144234ef222af28069a543f1850eee))
15
+
***deps:** update curlimages/curl docker tag to v8.2.1 ([#505](https://github.com/open-feature/open-feature-operator/issues/505)) ([ae1be55](https://github.com/open-feature/open-feature-operator/commit/ae1be55091086bc0791aaea8a3eed88dd47f5390))
16
+
***deps:** update dependency bitnami-labs/readme-generator-for-helm to v2.5.1 ([#506](https://github.com/open-feature/open-feature-operator/issues/506)) ([54d59db](https://github.com/open-feature/open-feature-operator/commit/54d59db82ce834145cb1d21cdb6595920ad1a0d7))
17
+
***deps:** update docker/login-action digest to a979406 ([#493](https://github.com/open-feature/open-feature-operator/issues/493)) ([22a1e55](https://github.com/open-feature/open-feature-operator/commit/22a1e557adee524006a4eef488a9e6c684a24464))
18
+
***deps:** update helm/kind-action action to v1.8.0 ([#507](https://github.com/open-feature/open-feature-operator/issues/507)) ([e740068](https://github.com/open-feature/open-feature-operator/commit/e74006872ebbc6595332a3722657f64e34ef1f29))
* update K8s deps and fix api changes ([#518](https://github.com/open-feature/open-feature-operator/issues/518)) ([644144f](https://github.com/open-feature/open-feature-operator/commit/644144ffabfc4b7d527abf030223cef202c22bfe))
The command removes all the Kubernetes components associated with the chart and deletes the release.
84
84
85
-
<!-- x-release-please-start-version -->
86
85
## Configuration
87
86
88
87
### Global
@@ -102,7 +101,7 @@ The command removes all the Kubernetes components associated with the chart and
102
101
|`sidecarConfiguration.image.tag`| Sets the version tag for the injected sidecar. |`v0.6.3`|
103
102
|`sidecarConfiguration.providerArgs`| Used to append arguments to the sidecar startup command. This value is a comma separated string of key values separated by '=', e.g. `key=value,key2=value2` results in the appending of `--sync-provider-args key=value --sync-provider-args key2=value2`. |`""`|
104
103
|`sidecarConfiguration.envVarPrefix`| Sets the prefix for all environment variables set in the injected sidecar. |`FLAGD`|
105
-
|`sidecarConfiguration.defaultSyncProvider`| Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 3 valid sync providers: `kubernetes`, `filepath` and `http`.|`kubernetes`|
104
+
|`sidecarConfiguration.defaultSyncProvider`| Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 4 valid sync providers: `kubernetes`, `grpc`, `filepath` and `http`. |`kubernetes`|
106
105
|`sidecarConfiguration.evaluator`| Sets the value of the `XXX_EVALUATOR` environment variable for the injected sidecar container. |`json`|
107
106
|`sidecarConfiguration.logFormat`| Sets the value of the `XXX_LOG_FORMAT` environment variable for the injected sidecar container. There are 2 valid log formats: `json` and `console`. |`json`|
108
107
|`sidecarConfiguration.probesEnabled`| Enable or Disable Liveness and Readiness probes of the flagd sidecar. When enabled, HTTP probes( paths - `/readyz`, `/healthz`) are set with an initial delay of 5 seconds. |`true`|
@@ -131,7 +130,7 @@ The command removes all the Kubernetes components associated with the chart and
131
130
|`controllerManager.kubeRbacProxy.resources.requests.cpu`| Sets cpu resource requests for kube-rbac-proxy. |`5m`|
132
131
|`controllerManager.kubeRbacProxy.resources.requests.memory`| Sets memory resource requests for kube-rbac-proxy. |`64Mi`|
133
132
|`controllerManager.manager.image.repository`| Sets the image for the operator. |`ghcr.io/open-feature/open-feature-operator`|
134
-
|`controllerManager.manager.image.tag`| Sets the version tag for the operator. |`v0.2.35`|
133
+
|`controllerManager.manager.image.tag`| Sets the version tag for the operator. |`v0.2.36`|
135
134
|`controllerManager.manager.resources.limits.cpu`| Sets cpu resource limits for operator. |`500m`|
136
135
|`controllerManager.manager.resources.limits.memory`| Sets memory resource limits for operator. |`128Mi`|
137
136
|`controllerManager.manager.resources.requests.cpu`| Sets cpu resource requests for operator. |`10m`|
@@ -140,5 +139,3 @@ The command removes all the Kubernetes components associated with the chart and
140
139
|`managerConfig.controllerManagerConfigYaml.health.healthProbeBindAddress`| Sets the bind address for health probes. |`:8081`|
141
140
|`managerConfig.controllerManagerConfigYaml.metrics.bindAddress`| Sets the bind address for metrics. |`127.0.0.1:8080`|
142
141
|`managerConfig.controllerManagerConfigYaml.webhook.port`| Sets the bind address for webhook. |`9443`|
Copy file name to clipboardExpand all lines: chart/open-feature-operator/values.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ sidecarConfiguration:
21
21
providerArgs: ""
22
22
## @param sidecarConfiguration.envVarPrefix Sets the prefix for all environment variables set in the injected sidecar.
23
23
envVarPrefix: "FLAGD"
24
-
## @param sidecarConfiguration.defaultSyncProvider Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 3 valid sync providers: `kubernetes`, `filepath` and `http`.
24
+
## @param sidecarConfiguration.defaultSyncProvider Sets the value of the `XXX_SYNC_PROVIDER` environment variable for the injected sidecar container. There are 4 valid sync providers: `kubernetes`, `grpc`, `filepath` and `http`.
25
25
defaultSyncProvider: kubernetes
26
26
## @param sidecarConfiguration.evaluator Sets the value of the `XXX_EVALUATOR` environment variable for the injected sidecar container.
27
27
evaluator: json
@@ -74,7 +74,7 @@ controllerManager:
74
74
## @param controllerManager.manager.image.repository Sets the image for the operator.
0 commit comments