Skip to content
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 annotation trigger to reconcile on container image change #18513

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix annotation trigger to reconcile on container image change
tnozicka committed Feb 7, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 6d2bf755de1ae7cb08e54e7d418eebcc2bac7e0d
29 changes: 29 additions & 0 deletions pkg/image/trigger/annotations/annotations.go
Original file line number Diff line number Diff line change
@@ -172,6 +172,33 @@ func UpdateObjectFromImages(obj runtime.Object, tagRetriever trigger.TagRetrieve
return updated, nil
}

// ContainerImageChanged returns true if any container image referenced by newTriggers changed.
func ContainerImageChanged(oldObj, newObj runtime.Object, newTriggers []triggerapi.ObjectFieldTrigger) bool {
for _, trigger := range newTriggers {
if trigger.Paused {
continue
}

newContainer, _, err := ContainerForObjectFieldPath(newObj, trigger.FieldPath)
if err != nil {
glog.V(5).Infof("%v", err)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add context for this error

continue
}

oldContainer, _, err := ContainerForObjectFieldPath(oldObj, trigger.FieldPath)
if err != nil {
// might just be a result of the update
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

glog(5) here as well

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if the triggers has changed or the images and the field path is valid only for the new image+trigger combination there will always be an error here although it's not an error in this case

continue
}

if newContainer.GetImage() != oldContainer.GetImage() {
return true
}
}

return false
}

// annotationTriggerIndexer uses annotations on objects to trigger changes.
type annotationTriggerIndexer struct {
prefix string
@@ -236,6 +263,8 @@ func (i annotationTriggerIndexer) Index(obj, old interface{}) (string, *trigger.
change = cache.Added
case !reflect.DeepEqual(oldTriggers, triggers):
change = cache.Updated
case ContainerImageChanged(old.(runtime.Object), obj.(runtime.Object), triggers):
change = cache.Updated
}
}