-
Notifications
You must be signed in to change notification settings - Fork 39
Bugfixes in release controller strategy executor #285
Bugfixes in release controller strategy executor #285
Conversation
This commit addresses multiple issues identified in strategy executor, among which: * Wrong recepients for patch updates: due to an error in the code some patches were applied to a wrong generation of release and target objects. * Target object spec checkers used to return an incomplete spec if only some of the clusters are misbehaving: there was a risk of de-scheduling the workload on healthy clusters. Signed-off-by: Oleg Sidorov <oleg.sidorov@booking.com>
4b197e1
to
58a116b
Compare
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
|
||
switch action := a.(type) { | ||
|
||
case kubetesting.CreateActionImpl: | ||
extra := fmt.Sprintf("Name: %s\n", action.Name) |
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.
Thank you for this one. Debugging tests with multiple objects was driving me crazy too :D
HasIncumbent bool | ||
IsLastStep bool | ||
HasTail bool | ||
Initiator *shipper.Release |
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 get what the Initiator is after reading the code, but without being familiar with how things work I don't think that the name carries enough meaning. I'm sorry I don't have a better suggestion, so I'll still approve, and if a better name comes up we can have a PR just to rename this.
…tency Due to a change introduced in #285, shipper strarted re-activating historical releases due to the way targetStep is resolved. The aforementioned step changed the composition of the pipeline and caused historical releases to be re-scheduled. This caused some historical items to re-activate their capacity and target targets. This change mainly reverts the re-composition of the pipeline and ensures the historical releases never re-activate their predecessors. Signed-off-by: Oleg Sidorov <oleg.sidorov@booking.com>
…tency Due to a change introduced in #285, shipper strarted re-activating historical releases due to the way targetStep is resolved. The aforementioned step changed the composition of the pipeline and caused historical releases to be re-scheduled. This caused some historical items to re-activate their capacity and target targets. This change mainly reverts the re-composition of the pipeline and ensures the historical releases never re-activate their predecessors. Signed-off-by: Oleg Sidorov <oleg.sidorov@booking.com>
This commit addresses multiple issues identified in strategy executor,
among which:
patches were applied to a wrong generation of release and target
objects.
only some of the clusters are misbehaving: there was a risk of
de-scheduling the workload on healthy clusters.
Signed-off-by: Oleg Sidorov oleg.sidorov@booking.com