-
Notifications
You must be signed in to change notification settings - Fork 673
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] [HELM] Add support to disable MPS #1178
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Marino Borges <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@elezar / @tariq1890 Thoughts?
Unsure if we need also to change NVIDIA_DRIVER_CAPABILITIES env var value when running without MPS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You may also consider renaming this field so its purpose is more clear. Something more explicit like createDaemonset
would be an example.
@@ -145,6 +145,7 @@ nfd: | |||
- vendor | |||
|
|||
mps: | |||
enabled: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a user, I think at a minimum there needs to be comments placed above this line to explain its use. If I see this in a values file, I may interpret mps.enabled: true
to mean I, as a user, want MPS enabled right out of the gate. But that's not what this does. When set to false
MPS will never work even if I later activate an MPS configuration by labeling a node.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a comment clarifying this
Signed-off-by: Marino Borges <[email protected]>
Fixes #1177 with backward compatibility so this should be a minor change.