-
Notifications
You must be signed in to change notification settings - Fork 505
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
debian-iptables: Build buster-v1.6.0 image #1983
debian-iptables: Build buster-v1.6.0 image #1983
Conversation
Hi @wespanther. Thanks for your PR. I'm waiting for a kubernetes 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/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.
/ok-to-test
550c812
to
f808bc4
Compare
/retest |
/test pull-release-image-debian-iptables |
pull-release-image-debian-iptables is only failing on s390x:
fails with:
|
Looks like it's failing on the
It seems to be trying to use "/usr/sbin/rm"
|
I'm able to build it locally, which is kind of odd. |
/retest |
Add |
f808bc4
to
9acca0f
Compare
Going to try to symlink from |
RUN ln -s /bin/rm /usr/sbin/rm | ||
RUN echo deb http://deb.debian.org/debian buster-backports main >> /etc/apt/sources.list \ | ||
&& apt-get update \ | ||
&& apt-get -t buster-backports -y --no-install-recommends install \ |
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.
My recommendation would be to run these in the same command as each of these is a new layer.
RUN ln -s /bin/rm /usr/sbin/rm | |
RUN echo deb http://deb.debian.org/debian buster-backports main >> /etc/apt/sources.list \ | |
&& apt-get update \ | |
&& apt-get -t buster-backports -y --no-install-recommends install \ | |
RUN ln -s /bin/rm /usr/sbin/rm \ | |
&& echo deb http://deb.debian.org/debian buster-backports main >> /etc/apt/sources.list \ | |
&& apt-get update \ | |
&& apt-get -t buster-backports -y --no-install-recommends install \ |
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.
Good call, changed
@vinayakankugoyal: changing LGTM is restricted to collaborators 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. |
9acca0f
to
cd13b16
Compare
/hold for #1991 and debian-base promotion |
Co-authored-by: Stephen Augustus <[email protected]>
Co-authored-by: Stephen Augustus <[email protected]>
cd13b16
to
5999363
Compare
Rebased on #1991 and split the |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: justaugustus, saschagrunert, wespanther 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 |
What type of PR is this?
/kind feature
What this PR does / why we need it:
A new debian-iptables image based on
k8s.gcr.io/build-image/debian-base:buster-v1.6.0
. This fixes a handful of CVEs, such as some in openssl.Which issue(s) this PR fixes:
None
Special notes for your reviewer:
None
Does this PR introduce a user-facing change?