-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
🐛 Always build Kind images for upgrade tests #8859
🐛 Always build Kind images for upgrade tests #8859
Conversation
/test ? |
@killianmuldoon: The following commands are available to trigger required jobs:
The following commands are available to trigger optional jobs:
Use
In response to this:
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/test-infra repository. |
/test pull-cluster-api-e2e-full-main |
2b52e57
to
24b3012
Compare
/test pull-cluster-api-e2e-full-main |
@killianmuldoon: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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/test-infra repository. I understand the commands that are listed here. |
24b3012
to
1c04db6
Compare
/test pull-cluster-api-e2e-full-release-main |
@killianmuldoon: The specified target(s) for
The following commands are available to trigger optional jobs:
Use
In response to this:
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/test-infra repository. |
scripts/ci-e2e-lib.sh
Outdated
@@ -105,7 +105,7 @@ kind::prepareKindestImage() { | |||
kind::prepullImage "kindest/node:$version" | |||
|
|||
# if pre-pull failed, falling back to local build | |||
if [[ "$retVal" != 0 ]]; then | |||
if [[ "$retVal" != 0 ]] || [[ "$ALWAYS_BUILD_KIND_IMAGES" = "true" ]]; then | |||
echo "+ image for Kuberentes $version is not available in docker hub, trying local build" |
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.
nit: can we adjust the log message to say "or ALWAYS_BUILD_KIND_IMAGES" is set?
1c04db6
to
8f64dea
Compare
Signed-off-by: killianmuldoon <[email protected]>
8f64dea
to
4593ae8
Compare
/lgtm |
LGTM label has been added. Git tree hash: ade942b09f6491f4bf76bea2c987124f060b500a
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/cherry-pick release-1.3 |
/cherry-pick release-1.4 |
@killianmuldoon: new pull request created: #8870 In response to this:
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/test-infra repository. |
@killianmuldoon: new pull request created: #8871 In response to this:
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/test-infra repository. |
/cherry-pick release-1.2 |
@killianmuldoon: new pull request created: #8872 In response to this:
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/test-infra repository. |
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.
/area ci
Working on fixing errors from the release of KIND v0.20.0 - more information here: #8815
This PR ensures images are always built for CAPI e2e tests.