-
Notifications
You must be signed in to change notification settings - Fork 22
Update container image in PodSpec to use centos:10 #87
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
Conversation
Changed the container image from "centos" to "centos:10" in the PodSpec function to specify a more specific version of the CentOS image. Signed-off-by: Ashok Pariya <[email protected]>
Hi @ashokpariya0. Thanks for your PR. I'm waiting for a kubevirt member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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. |
cc @oshoval |
Nice thanks lets see if @phoracek is fine with this fix, it just means that we might need to change it in the future, but i think we are good to go, it can be stable for lot of time, and once needed we will find out |
/ok-to-test |
No, I saw the below output files in artifacts , but I don't see the error since the test pod creation itself failed. The error should be available in the kubelet logs and describe output of test pod. Do we collect kubelet logs in case of failure?
|
i guess we dont yet, thx |
@ashokpariya0 thank you for this fix, it would do wonders to CNAO tier1 lanes. <3 One question though - since CNAO is consuming bridge-marker main branch on all stable branches - is it OK to consume centos10 on old stable branches? |
I don't see any issue using centos with tag 10, we can use any tag: https://quay.io/repository/centos/centos?tab=tags, Line 139 in 5fb005a
reason: ErrImagePull)resulting into test failure, are we not seeing same failure with bridge-marker test on older stable branch ?? Also, the test( bridge-marker/tests/marker_test.go Line 80 in 5fb005a
bridge marker test is to verify that a pod, after waiting for the bridge resource to become available, should transition from the "Pending" state to the "Running" state once the Linux bridge is created. The resource requirements for the test are specified as:
The test ensures that the pod correctly transitions to a running state once the bridge resource is available. |
It is a test, not core code fwiw (we can continue discussion offline according needs please) |
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.
/lgtm
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: RamLavi 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 |
Changed the container image from "centos" to "centos:10" in the PodSpec function to specify a more specific version of the CentOS image.
What this PR does / why we need it:
We encountered the following test failure while running the Bridge Marker E2E tests from CNAO:
Failure Summary:
The pod created here(
bridge-marker/tests/marker_test.go
Line 88 in 5fb005a
bridge-marker-test
) encountered anErrImagePull
issue. The pod status was:Upon examining the pod's describe output, we found the following error:
The issue is caused by the Kubernetes node attempting to pull the
centos:latest
image from the registry, which results in a404 Not Found
error.Solution:
To resolve this issue, we will update the image to use a specific tag instead of the default
centos
image.Special notes for your reviewer:
Release note: