-
Notifications
You must be signed in to change notification settings - Fork 127
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
Ability to set azure cluster composition #323
Conversation
@@ -5,3 +5,9 @@ def create_parser(self, argparser): | |||
|
|||
def set_cloud_config_from_arguments(self, arguments): | |||
return NotImplemented | |||
|
|||
def set_composition_arguments(self, comp_group): | |||
pass |
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.
should we
pass | |
return NotImplemented |
?
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.
If we go with that approach, we have to check for cloud when we set the composition.
Rather than having an if condition to check whether the cloud supports, each cloud can set empty data or implement the function which will sets the value.
I implemented it this way to avoid that if conditions. In future, user has to implement the function and no need to edit the condition to allow cloud to set compositions.
Co-authored-by: Joy Lal Chattaraj <8450903+chattarajoy@users.noreply.github.com>
LGTM overall, @harshshah87 please let me know if this is ready to merge |
61eb262
@chattarajoy : We can merge now. |
(cherry picked from commit 96d16fd)
No description provided.