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
|`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
-
|`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. |`{}`|
|`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`|
Copy file name to clipboardExpand all lines: chart/open-feature-operator/values.yaml
+9
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
## @section Global
3
3
## @param 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.
4
4
defaultNamespace: open-feature-operator-system
5
+
## @section namespace
6
+
namespace:
7
+
## @param namespace.create Whether to create the namespace as part of this chart.
8
+
create: true
9
+
## @param namespace.labels Labels for the namespace if created as part of the chart.
10
+
labels: {}
11
+
## @param namespace.annotations Annotations for the namespace if created as part of the chart.
12
+
annotations: {}
13
+
5
14
## @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"}]
6
15
imagePullSecrets: []
7
16
## @param labels Labels to apply to all of the pods in the operator.
0 commit comments