-
Notifications
You must be signed in to change notification settings - Fork 21
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
Add support for NeMo Customizer #305
base: main
Are you sure you want to change the base?
Conversation
b3f6c00
to
ad941a9
Compare
// Enabled indicates whether Volcano scheduler is enabled | ||
Enabled bool `json:"enabled,omitempty"` |
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.
We dont need this
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 still want to keep this as for other microservices where this is optional, users can toggle the field dynamically without adding/removing entire spec.
// NemoCustomizerConditionReady indicates that the NEMO CustomizerService is ready. | ||
NemoCustomizerConditionReady = "Ready" | ||
// NemoCustomizerConditionFailed indicates that the NEMO CustomizerService has failed. | ||
NemoCustomizerConditionFailed = "Failed" | ||
|
||
// NemoCustomizerStatusPending indicates that NEMO CustomizerService is in pending state | ||
NemoCustomizerStatusPending = "Pending" | ||
// NemoCustomizerStatusNotReady indicates that NEMO CustomizerService is not ready | ||
NemoCustomizerStatusNotReady = "NotReady" | ||
// NemoCustomizerStatusReady indicates that NEMO CustomizerService is ready | ||
NemoCustomizerStatusReady = "Ready" | ||
// NemoCustomizerStatusFailed indicates that NEMO CustomizerService has failed | ||
NemoCustomizerStatusFailed = "Failed" |
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 see all NeMo microservices use similar status type.
Maybe we should consider moving them under common_types.go
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.
yes, makes sense, can do that as a follow up.
Signed-off-by: Shiva Krishna, Merla <smerla@nvidia.com>
Signed-off-by: Shiva Krishna, Merla <smerla@nvidia.com>
Signed-off-by: Shiva Krishna, Merla <smerla@nvidia.com>
Signed-off-by: Shiva Krishna, Merla <smerla@nvidia.com>
8af2740
to
977e421
Compare
No description provided.