From def14340603c2c9976e3a6142ab494764933f682 Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Fri, 31 Jan 2025 13:11:50 -0500 Subject: [PATCH] chore: remove rbac-proxy values and doc (#742) Signed-off-by: Todd Baert --- chart/open-feature-operator/README.md | 22 ++++++++-------------- chart/open-feature-operator/values.yaml | 19 +------------------ 2 files changed, 9 insertions(+), 32 deletions(-) diff --git a/chart/open-feature-operator/README.md b/chart/open-feature-operator/README.md index e1ad91eee..628acfb86 100644 --- a/chart/open-feature-operator/README.md +++ b/chart/open-feature-operator/README.md @@ -99,14 +99,14 @@ The command removes all the Kubernetes components associated with the chart and ### namespace -| Name | Description | Value | -| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | -| `namespace.create` | Whether to create the namespace as part of this chart. | `true` | -| `namespace.labels` | Labels for the namespace if created as part of the chart. | `{}` | -| `namespace.annotations` | Annotations for the namespace if created as part of the chart. | `{}` | -| `imagePullSecrets` | Array of ImagePullSecret objects containing credentials for images pulled by the operator (flagdProxyConfiguration.image, flagdConfiguration.image, controllerManager.manager.image, controllerManager.kubeRbacProxy.image). Example: imagePullSecrets: [{"name": "my-secret"}] | `[]` | -| `labels` | Labels to apply to all of the pods in the operator. | `{}` | -| `annotations` | Annotations to apply to all of the pods in the operator. | `{}` | +| Name | Description | Value | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | +| `namespace.create` | Whether to create the namespace as part of this chart. | `true` | +| `namespace.labels` | Labels for the namespace if created as part of the chart. | `{}` | +| `namespace.annotations` | Annotations for the namespace if created as part of the chart. | `{}` | +| `imagePullSecrets` | Array of ImagePullSecret objects containing credentials for images pulled by the operator (flagdProxyConfiguration.image, flagdConfiguration.image, controllerManager.manager.image). Example: imagePullSecrets: [{"name": "my-secret"}] | `[]` | +| `labels` | Labels to apply to all of the pods in the operator. | `{}` | +| `annotations` | Annotations to apply to all of the pods in the operator. | `{}` | ### Mutating Webhook configuration @@ -178,12 +178,6 @@ The command removes all the Kubernetes components associated with the chart and | Name | Description | Value | | ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | -| `controllerManager.kubeRbacProxy.image.repository` | Sets the image for the kube-rbac-proxy. | `gcr.io/kubebuilder/kube-rbac-proxy` | -| `controllerManager.kubeRbacProxy.image.tag` | Sets the version tag for the kube-rbac-proxy. | `v0.14.1` | -| `controllerManager.kubeRbacProxy.resources.limits.cpu` | Sets cpu resource limits for kube-rbac-proxy. | `500m` | -| `controllerManager.kubeRbacProxy.resources.limits.memory` | Sets memory resource limits for kube-rbac-proxy. | `128Mi` | -| `controllerManager.kubeRbacProxy.resources.requests.cpu` | Sets cpu resource requests for kube-rbac-proxy. | `5m` | -| `controllerManager.kubeRbacProxy.resources.requests.memory` | Sets memory resource requests for kube-rbac-proxy. | `64Mi` | | `controllerManager.manager.image.repository` | Sets the image for the operator. | `ghcr.io/open-feature/open-feature-operator` | | `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.8.4` | | `controllerManager.manager.resources.limits.cpu` | Sets cpu resource limits for operator. | `500m` | diff --git a/chart/open-feature-operator/values.yaml b/chart/open-feature-operator/values.yaml index d967dc2bc..437c85609 100644 --- a/chart/open-feature-operator/values.yaml +++ b/chart/open-feature-operator/values.yaml @@ -11,7 +11,7 @@ namespace: ## @param namespace.annotations Annotations for the namespace if created as part of the chart. annotations: {} -## @param imagePullSecrets Array of ImagePullSecret objects containing credentials for images pulled by the operator (flagdProxyConfiguration.image, flagdConfiguration.image, controllerManager.manager.image, controllerManager.kubeRbacProxy.image). Example: imagePullSecrets: [{"name": "my-secret"}] +## @param imagePullSecrets Array of ImagePullSecret objects containing credentials for images pulled by the operator (flagdProxyConfiguration.image, flagdConfiguration.image, controllerManager.manager.image). Example: imagePullSecrets: [{"name": "my-secret"}] imagePullSecrets: [] ## @param labels Labels to apply to all of the pods in the operator. labels: {} @@ -124,23 +124,6 @@ flagdConfiguration: ## @section Operator resource configuration controllerManager: - kubeRbacProxy: - image: - ## @param controllerManager.kubeRbacProxy.image.repository Sets the image for the kube-rbac-proxy. - repository: gcr.io/kubebuilder/kube-rbac-proxy - ## @param controllerManager.kubeRbacProxy.image.tag Sets the version tag for the kube-rbac-proxy. - tag: "v0.14.1" - resources: - limits: - ## @param controllerManager.kubeRbacProxy.resources.limits.cpu Sets cpu resource limits for kube-rbac-proxy. - cpu: 500m - ## @param controllerManager.kubeRbacProxy.resources.limits.memory Sets memory resource limits for kube-rbac-proxy. - memory: 128Mi - requests: - ## @param controllerManager.kubeRbacProxy.resources.requests.cpu Sets cpu resource requests for kube-rbac-proxy. - cpu: 5m - ## @param controllerManager.kubeRbacProxy.resources.requests.memory Sets memory resource requests for kube-rbac-proxy. - memory: 64Mi manager: image: ## @param controllerManager.manager.image.repository Sets the image for the operator.