-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Fix machine deployment controller revision annotation update #499
Fix machine deployment controller revision annotation update #499
Conversation
/ok-to-test |
/assign @timothysc |
/assign @kris-nova @roberthbailey |
@@ -111,7 +111,7 @@ func (dc *MachineDeploymentControllerImpl) getNewMachineSet(d *v1alpha1.MachineD | |||
|
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.
SetDeploymentRevision
one line above this comment where I can unfortunatelly not comment updates an annotation if required:
func SetDeploymentRevision(deployment *v1alpha1.MachineDeployment, revision string) bool { |
Consequently we must update the MachienDeployment
, not its status.
The current behaviour results in the UpdateStatus
being basically a no-op, except it triggers the informer, which then triggers the sync
, which triggers this UpdateStatus
again etc.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alvaroaleman, roberthbailey 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 |
What this PR does / why we need it:
Currently the machineDeployment controller updates the
machineDeployment
status instead of themachineDeployment
itself after theDeploymentRevision
got changedWhich issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #
Special notes for your reviewer:
Release note: