-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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) | ||
continue | ||
} | ||
|
||
oldContainer, _, err := ContainerForObjectFieldPath(oldObj, trigger.FieldPath) | ||
if err != nil { | ||
// might just be a result of the update | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. glog(5) here as well There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
} | ||
} | ||
|
||
|
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.
please add context for this error