Skip to content

Commit

Permalink
docs: fix rendering issue with operator resource config table (#401)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
  • Loading branch information
beeme1mr committed Mar 16, 2023
1 parent 945aa6b commit 71ea8a6
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions chart/open-feature-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,31 +98,31 @@ The command removes all the Kubernetes components associated with the chart and
| `sidecarConfiguration.image.tag` | current flagd version: `v0.4.4` | Sets the version tag for the injected sidecar container. |
| `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` |
| `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` |
| `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` |
| `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` |
| `sidecarConfiguration.evaluator` | `json` | Sets the value of the `XXX_EVALUATOR` environment variable for the injected sidecar container. |
| `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 |

### Operator resource configuration

| Value | Default |
| ----------------------------------------------------------- | ------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `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. |
| `controllerManager.kubeRbacProxy.image.repository` | `gcr.io/kubebuilder/kube-rbac-proxy` |
| `controllerManager.kubeRbacProxy.image.tag` | `v0.13.1` |
| `controllerManager.kubeRbacProxy.resources.limits.cpu` | `500m` |
| `controllerManager.kubeRbacProxy.resources.limits.memory` | `128Mi` |
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | `5m` |
| `controllerManager.kubeRbacProxy.resources.requests.memory` | `64Mi` |
| `controllerManager.manager.image.repository` | `ghcr.io/open-feature/open-feature-operator` |
| `controllerManager.manager.image.tag` | `v0.2.30` <!-- x-release-please-version --> |
| `controllerManager.manager.resources.limits.cpu` | `500m` |
| `controllerManager.manager.resources.limits.memory` | `128Mi` |
| `controllerManager.manager.resources.requests.cpu` | `10m` |
| `controllerManager.manager.resources.requests.memory` | `64Mi` |
| `managerConfig.controllerManagerConfigYaml` | `1` |
| `managerConfig.replicas.health.healthProbeBindAddress` | `:8081` |
| `managerConfig.replicas.metrics.bindAddress` | `127.0.0.1:8080` |
| `managerConfig.replicas.webhook.port` | `9443` |
| Value | Default | Explanation |
| ----------------------------------------------------------- | -------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `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. |
| `controllerManager.kubeRbacProxy.image.repository` | `gcr.io/kubebuilder/kube-rbac-proxy` | |
| `controllerManager.kubeRbacProxy.image.tag` | `v0.13.1` | |
| `controllerManager.kubeRbacProxy.resources.limits.cpu` | `500m` | |
| `controllerManager.kubeRbacProxy.resources.limits.memory` | `128Mi` | |
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | `5m` | |
| `controllerManager.kubeRbacProxy.resources.requests.memory` | `64Mi` | |
| `controllerManager.manager.image.repository` | `ghcr.io/open-feature/open-feature-operator` | |
| `controllerManager.manager.image.tag` | `v0.2.30` <!-- x-release-please-version --> | |
| `controllerManager.manager.resources.limits.cpu` | `500m` | |
| `controllerManager.manager.resources.limits.memory` | `128Mi` | |
| `controllerManager.manager.resources.requests.cpu` | `10m` | |
| `controllerManager.manager.resources.requests.memory` | `64Mi` | |
| `managerConfig.controllerManagerConfigYaml` | `1` | |
| `managerConfig.replicas.health.healthProbeBindAddress` | `:8081` | |
| `managerConfig.replicas.metrics.bindAddress` | `127.0.0.1:8080` | |
| `managerConfig.replicas.webhook.port` | `9443` | |

## Changelog

Expand Down

0 comments on commit 71ea8a6

Please sign in to comment.