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
@@ -57,6 +57,8 @@ The Dynamo Platform Helm chart deploys the complete Dynamo Cloud infrastructure
57
57
| dynamo-operator.enabled | bool |`true`| Whether to enable the Dynamo Kubernetes operator deployment |
58
58
| dynamo-operator.natsAddr | string |`""`| NATS server address for operator communication (leave empty to use the bundled NATS chart). Format: "nats://hostname:port" |
59
59
| dynamo-operator.etcdAddr | string |`""`| etcd server address for operator state storage (leave empty to use the bundled etcd chart). Format: "http://hostname:port" or "https://hostname:port"|
60
+
| dynamo-operator.modelExpressURL | string |`""`| URL for the Model Express server if not deployed by this helm chart. This is ignored if Model Express server is installed by this helm chart (global.model-express.enabled is true). |
61
+
| dynamo-operator.namespaceRestriction | object |`{"enabled":true,"targetNamespace":null}`| Namespace access controls for the operator |
60
62
| dynamo-operator.namespaceRestriction.enabled | bool |`true`| Whether to restrict operator to specific namespaces |
61
63
| dynamo-operator.namespaceRestriction.targetNamespace | string |`nil`| Target namespace for operator deployment (leave empty for current namespace) |
62
64
| dynamo-operator.controllerManager.tolerations | list |`[]`| Node tolerations for controller manager pods |
Copy file name to clipboardExpand all lines: deploy/cloud/helm/platform/values.yaml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,9 @@ dynamo-operator:
27
27
# -- etcd server address for operator state storage (leave empty to use the bundled etcd chart). Format: "http://hostname:port" or "https://hostname:port"
28
28
etcdAddr: ""
29
29
30
-
# Namespace access controls for the operator
30
+
# -- URL for the Model Express server if not deployed by this helm chart. This is ignored if Model Express server is installed by this helm chart (global.model-express.enabled is true).
31
+
modelExpressURL: ""
32
+
# -- Namespace access controls for the operator
31
33
namespaceRestriction:
32
34
# -- Whether to restrict operator to specific namespaces
0 commit comments