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
CRDs are not upgraded automatically with helm (https://helm.sh/docs/chart_best_practices/custom_resource_definitions/).
51
+
OpenFeature Operator's CRDs are templated, and can be updated apart from the operator itself by using helm's template functionality and piping the output to `kubectl`:
|`sidecarConfiguration.envVarPrefix`|`FLAGD`| Sets the prefix for all environment variables set in the injected sidecar. |
50
94
|`sidecarConfiguration.port`| 8013 | Sets the value of the `XXX_PORT` environment variable for the injected sidecar container. |
51
95
|`sidecarConfiguration.metricsPort`| 8014 | Sets the value of the `XXX_METRICS_PORT` environment variable for the injected sidecar container. |
@@ -54,30 +98,30 @@ The command removes all the Kubernetes components associated with the chart and
54
98
|`sidecarConfiguration.image.tag`| current flagd version: `v0.4.1`| Sets the version tag for the injected sidecar container. |
55
99
|`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`|
56
100
|`sidecarConfiguration.defaultSyncProvider`|`kubernetes`| 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`|
57
-
|`sidecarConfiguration.logFormat`|`json`| Sets the value of the `XXX_LOG_FORMAT` environment variable for the injected sidecar container. |
101
+
|`sidecarConfiguration.logFormat`|`json`| Sets the value of the `XXX_LOG_FORMAT` environment variable for the injected sidecar container. There are 2 valid log formats: `json` and `console`|
58
102
|`sidecarConfiguration.evaluator`|`json`| Sets the value of the `XXX_EVALUATOR` environment variable for the injected sidecar container. |
59
103
|`sidecarConfiguration.probesEnabled`|`true`| 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 |
|`defaultNamespace`|`open-feature-operator`|[INTERNAL USE ONLY] To override the namespace use the `--namespace` flag. This default is provided to ensure that the kustomize build charts in `/templates` deploy correctly when no `namespace` is provided via the `-n` flag.|
|`defaultNamespace`|`open-feature-operator`|[INTERNAL USE ONLY] To override the namespace use the `--namespace` flag. This default is provided to ensure that the kustomize build charts in `/templates` deploy correctly when no `namespace` is provided via the `-n` flag.|
CRDs are not upgraded automatically with helm (https://helm.sh/docs/chart_best_practices/custom_resource_definitions/).
33
33
OpenFeature Operator's CRDs are templated, and can be updated apart from the operator itself by using helm's template functionality and piping the output to `kubectl`:
0 commit comments