-
Notifications
You must be signed in to change notification settings - Fork 44
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
Refactor conditions logic #305
Refactor conditions logic #305
Conversation
pkg/actuators/machine/utils.go
Outdated
func conditionFailed() providerconfigv1.AWSMachineProviderCondition { | ||
return providerconfigv1.AWSMachineProviderCondition{ | ||
Type: providerconfigv1.MachineCreation, | ||
Status: corev1.ConditionTrue, |
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 be false?
Status: corev1.ConditionTrue, | |
Status: corev1.ConditionFalse, |
type AWSMachineProviderConditionReason string | ||
|
||
const ( | ||
// MachineCreationSucceeded indicates machine creation success |
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.
Nit: should have period at end
// MachineCreationSucceeded indicates machine creation success | |
// MachineCreationSucceeded indicates machine creation success. |
@@ -60,6 +60,16 @@ const ( | |||
MachineCreation AWSMachineProviderConditionType = "MachineCreation" | |||
) | |||
|
|||
// AWSMachineProviderConditionReason is reason for the condition's last transition |
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.
Nit: should have period at end
// AWSMachineProviderConditionReason is reason for the condition's last transition | |
// AWSMachineProviderConditionReason is reason for the condition's last transition. |
const ( | ||
// MachineCreationSucceeded indicates machine creation success | ||
MachineCreationSucceeded AWSMachineProviderConditionReason = "MachineCreationSucceeded" | ||
// MachineCreationFailed indicates machine creation fail |
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.
Nit: consistency
// MachineCreationFailed indicates machine creation fail | |
// MachineCreationFailed indicates machine creation failure. |
@JoelSpeed fixed |
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.
/lgtm
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: enxebre The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Refactor conditions logic and make it more simple. PR also contains a commit that removes double imports.