You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the bundle resolver is pulling bundles from a registry, it should be able to detect when there is an issue with the registry and wrap that error to present a more user-friendly error
Actual Behavior
Pipeline tekton-ci/tekton-bundle-builder can't be Run; it contains Tasks that don't exist: Couldn't retrieve Task "summary": yaml: control characters are not allowed
Steps to Reproduce the Problem
This is not an issue that I have encountered directly but one that I have seen others encounter. I have seen this arise when the registry service blips out so multiple images might not be able to be pulled. Potential reproduction steps
Reference an invalid bundle image (i.e. one that will return a 404 or 5xx)
The bundle resolving was actually performed via .taskRef.bundle and not .taskRef.resolver. While I will need to move to the new bundle resolver, we should still make sure that the resolver properly handles the errors seen from the previous bundle resolution method.
@arewm so this is actually a bit of a problem to fix, and I am going to close this.
The resolvers (and the legacy bundle code as well) act correctly given the registry is acting like a normal service.
Quay sometimes returns an HTTP 200 with some html content when it is unstable or errors out on a pull.. This is a Quay issue. Tt should return a HTTP 500 which would be properly handled by tekton
The error contains Couldn't retrieve Task "summary", which, even though the later is a bit criptic, convey the information that something went wrong and tekton couldn't find the task
Expected Behavior
When the bundle resolver is pulling bundles from a registry, it should be able to detect when there is an issue with the registry and wrap that error to present a more user-friendly error
Actual Behavior
Steps to Reproduce the Problem
This is not an issue that I have encountered directly but one that I have seen others encounter. I have seen this arise when the registry service blips out so multiple images might not be able to be pulled. Potential reproduction steps
Additional Info
0.41
The text was updated successfully, but these errors were encountered: