-
Notifications
You must be signed in to change notification settings - Fork 63
test-fbc: Handle pagination in quay.io API #1381
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
base: devel
Are you sure you want to change the base?
Conversation
Our pipeline is currently failing to create test catalogs. It appears to be looping on : jq: error (at <stdin>:1): Cannot iterate over null (null) jq: error (at <stdin>:1): Cannot iterate over null (null) jq: error (at <stdin>:1): Cannot iterate over null (null) jq: error (at <stdin>:1): Cannot iterate over null (null) jq: error (at <stdin>:1): Cannot iterate over null (null) This comes from a ininite loop when trying to generate the changelog. Leverage `.has_additional` from the quay.io to break out the loop. Signed-off-by: Greg Kurz <[email protected]>
| "osc-operator" | "osc-must-gather" | "osc-podvm-builder") | ||
| echo "https://github.com/openshift/sandboxed-containers-operator" | ||
| ;; | ||
| "osc-caa" | "osc-caa-webhook" | "osc-podvm-payload") |
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 see another problem in the log for this PR's build :
| "osc-cloud-api-adaptor" | "osc-cloud-api-adaptor-webhook" | "osc-podvm-payload") |
The `changelog.sh` script has some bugs (see openshift#1381) that cause the pipeline to fail. This results in no new test catalogs. Temporarily disable the changelog generation to unblock the release effort. Signed-off-by: Greg Kurz <[email protected]>
|
For future debugging: the error shows up because of this commit 58a821a |
The `changelog.sh` script has some bugs (see openshift#1381) that cause the pipeline to fail. This results in no new test catalogs. Temporarily disable the changelog generation to unblock the release effort. Signed-off-by: Greg Kurz <[email protected]>
|
@gkurz: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Our pipeline is currently failing to create test catalogs. It appears to be looping on :
jq: error (at :1): Cannot iterate over null (null)
jq: error (at :1): Cannot iterate over null (null)
jq: error (at :1): Cannot iterate over null (null)
jq: error (at :1): Cannot iterate over null (null)
jq: error (at :1): Cannot iterate over null (null)
This comes from a ininite loop when trying to generate the changelog. Leverage
.has_additionalfrom the quay.io to break out the loop.