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
Currently, there is only one deployment, so avoid premature optimization
by making these global (and follow the same pattern for
imagePullSecrets)
Requires more aggressive usage of the `strip-kustomize-helm.sh` script
because we have to preserve existing annotations and labels from the
config/manager directory.
Also update labels and annotations for injected pods (FlagD sidecar,
FlagD standalone, and FlagD proxy).
Signed-off-by: Christopher Pitstick <cpitstick@lat.ai>
|`defaultNamespace`| 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. |`open-feature-operator-system`|
99
99
|`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"}]|`[]`|
100
+
|`labels`| Labels to apply to all of the pods in the operator. |`{}`|
101
+
|`annotations`| Annotations to apply to all of the pods in the operator. |`{}`|
100
102
101
103
### Sidecar configuration
102
104
@@ -167,7 +169,7 @@ The command removes all the Kubernetes components associated with the chart and
167
169
|`controllerManager.kubeRbacProxy.resources.requests.cpu`| Sets cpu resource requests for kube-rbac-proxy. |`5m`|
168
170
|`controllerManager.kubeRbacProxy.resources.requests.memory`| Sets memory resource requests for kube-rbac-proxy. |`64Mi`|
169
171
|`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`|
172
+
|`controllerManager.manager.image.tag`| Sets the version tag for the operator. |`v0.7.0`|
171
173
|`controllerManager.manager.resources.limits.cpu`| Sets cpu resource limits for operator. |`500m`|
172
174
|`controllerManager.manager.resources.limits.memory`| Sets memory resource limits for operator. |`128Mi`|
173
175
|`controllerManager.manager.resources.requests.cpu`| Sets cpu resource requests for operator. |`10m`|
@@ -180,3 +182,4 @@ The command removes all the Kubernetes components associated with the chart and
180
182
|`managerConfig.controllerManagerConfigYaml.metrics.bindAddress`| Sets the bind address for metrics (combined with bindPort). |`127.0.0.1`|
181
183
|`managerConfig.controllerManagerConfigYaml.metrics.bindPort`| Sets the bind port for metrics. |`8080`|
182
184
|`managerConfig.controllerManagerConfigYaml.webhook.port`| Sets the bind address for webhook. |`9443`|
# this is transformed by .github/scripts/strip-kustomize-helm.sh
11
+
annotations:
12
+
___delete_me___: "___ ___newline___{{ if .Values.annotations }}{{___space___toYaml___space___.Values.annotations___space___|___space___indent___space___8___space___}}{{ end }}___"
13
+
# this is transformed by .github/scripts/strip-kustomize-helm.sh
14
+
labels:
15
+
___delete_me___: "___ ___newline___{{ if .Values.labels }}___newline___{{___space___toYaml___space___.Values.labels___space___|___space___indent___space___8___space___}}{{ end }}___"
9
16
spec:
10
17
# this is transformed by .github/scripts/strip-kustomize-helm.sh
0 commit comments