Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
8f338a63
Unverified
Commit
8f338a63
authored
Sep 23, 2025
by
Biswa Panda
Committed by
GitHub
Sep 24, 2025
Browse files
feat: allow setting affinity for controller manager pod (#3157)
parent
c63cceaa
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
1 deletion
+9
-1
deploy/cloud/helm/platform/README.md
deploy/cloud/helm/platform/README.md
+1
-0
deploy/cloud/helm/platform/components/operator/templates/deployment.yaml
...lm/platform/components/operator/templates/deployment.yaml
+4
-0
deploy/cloud/helm/platform/values.yaml
deploy/cloud/helm/platform/values.yaml
+3
-0
docs/Makefile
docs/Makefile
+1
-1
No files found.
deploy/cloud/helm/platform/README.md
View file @
8f338a63
...
@@ -62,6 +62,7 @@ The Dynamo Platform Helm chart deploys the complete Dynamo Cloud infrastructure
...
@@ -62,6 +62,7 @@ The Dynamo Platform Helm chart deploys the complete Dynamo Cloud infrastructure
| dynamo-operator.namespaceRestriction.enabled | bool |
`true`
| Whether to restrict operator to specific namespaces |
| dynamo-operator.namespaceRestriction.enabled | bool |
`true`
| Whether to restrict operator to specific namespaces |
| dynamo-operator.namespaceRestriction.targetNamespace | string |
`nil`
| Target namespace for operator deployment (leave empty for current namespace) |
| dynamo-operator.namespaceRestriction.targetNamespace | string |
`nil`
| Target namespace for operator deployment (leave empty for current namespace) |
| dynamo-operator.controllerManager.tolerations | list |
`[]`
| Node tolerations for controller manager pods |
| dynamo-operator.controllerManager.tolerations | list |
`[]`
| Node tolerations for controller manager pods |
| dynamo-operator.controllerManager.affinity | list |
`[]`
| Affinity for controller manager pods |
| dynamo-operator.controllerManager.manager.image.repository | string |
`"nvcr.io/nvidia/ai-dynamo/kubernetes-operator"`
| Official NVIDIA Dynamo operator image repository |
| dynamo-operator.controllerManager.manager.image.repository | string |
`"nvcr.io/nvidia/ai-dynamo/kubernetes-operator"`
| Official NVIDIA Dynamo operator image repository |
| dynamo-operator.controllerManager.manager.image.tag | string |
`""`
| Image tag (leave empty to use chart default) |
| dynamo-operator.controllerManager.manager.image.tag | string |
`""`
| Image tag (leave empty to use chart default) |
| dynamo-operator.controllerManager.manager.image.pullPolicy | string |
`"IfNotPresent"`
| Image pull policy - when to pull the image |
| dynamo-operator.controllerManager.manager.image.pullPolicy | string |
`"IfNotPresent"`
| Image pull policy - when to pull the image |
...
...
deploy/cloud/helm/platform/components/operator/templates/deployment.yaml
View file @
8f338a63
...
@@ -45,6 +45,10 @@ spec:
...
@@ -45,6 +45,10 @@ spec:
tolerations
:
tolerations
:
{{
- toYaml . | nindent 8
}}
{{
- toYaml . | nindent 8
}}
{{
- end
}}
{{
- end
}}
{{
- with .Values.controllerManager.affinity
}}
affinity
:
{{
- toYaml . | nindent 8
}}
{{
- end
}}
containers
:
containers
:
-
args
:
{{
- toYaml .Values.controllerManager.kubeRbacProxy.args | nindent
-
args
:
{{
- toYaml .Values.controllerManager.kubeRbacProxy.args | nindent
8
}}
8
}}
...
...
deploy/cloud/helm/platform/values.yaml
View file @
8f338a63
...
@@ -41,6 +41,9 @@ dynamo-operator:
...
@@ -41,6 +41,9 @@ dynamo-operator:
# -- Node tolerations for controller manager pods
# -- Node tolerations for controller manager pods
tolerations
:
[]
tolerations
:
[]
# -- Affinity for controller manager pods
affinity
:
[]
manager
:
manager
:
# Container image configuration for the operator manager
# Container image configuration for the operator manager
image
:
image
:
...
...
docs/Makefile
View file @
8f338a63
...
@@ -52,7 +52,7 @@ HELM_DOCS ?= $(LOCALBIN)/helm-docs-$(HELM_DOCS_VERSION)
...
@@ -52,7 +52,7 @@ HELM_DOCS ?= $(LOCALBIN)/helm-docs-$(HELM_DOCS_VERSION)
helm-docs-install
:
$(HELM_DOCS)
##
Download helm-docs locally if necessary
helm-docs-install
:
$(HELM_DOCS)
##
Download helm-docs locally if necessary
$(HELM_DOCS)
:
$(LOCALBIN)
$(HELM_DOCS)
:
$(LOCALBIN)
@
echo
"📥 Downloading helm-docs
$(HELM_DOCS_VERSION)
..."
@
echo
"📥 Downloading helm-docs
$(HELM_DOCS_VERSION)
..."
@
ARCH
=
$$
(
uname
-m
|
sed
's/x86_64/amd64/'
|
sed
's/aarch64/arm64/'
)
;
\
@
ARCH
=
$$
(
uname
-m
)
;
\
OS
=
$$
(
uname
-s
|
tr
'[:upper:]'
'[:lower:]'
)
;
\
OS
=
$$
(
uname
-s
|
tr
'[:upper:]'
'[:lower:]'
)
;
\
curl
-sSL
"https://github.com/norwoodj/helm-docs/releases/download/v
$(HELM_DOCS_VERSION)
/helm-docs_
$(HELM_DOCS_VERSION)
_
$
${OS}
_
$
${ARCH}
.tar.gz"
|
\
curl
-sSL
"https://github.com/norwoodj/helm-docs/releases/download/v
$(HELM_DOCS_VERSION)
/helm-docs_
$(HELM_DOCS_VERSION)
_
$
${OS}
_
$
${ARCH}
.tar.gz"
|
\
tar
xz
-C
$(LOCALBIN)
helm-docs
&&
\
tar
xz
-C
$(LOCALBIN)
helm-docs
&&
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment