-
Notifications
You must be signed in to change notification settings - Fork 227
use docker build to generate images(1.32 backport) #830
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
use docker build to generate images(1.32 backport) #830
Conversation
Change-Id: I2c8839ba088342318ee93fb03527917f21a4aee5
This issue is currently awaiting triage. If the repository mantainers determine this is a relevant issue, they will accept it by applying the The 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. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mmamczur, YifeiZhuang 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 |
@@ -0,0 +1,16 @@ | |||
ARG GOARCH="amd64" | |||
|
|||
FROM golang:1.24 AS builder |
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.
be aware of kubernetes and golang versions relation, you can find the relation in this filel https://github.com/kubernetes/kubernetes/blob/master/.go-version in each branch https://github.com/kubernetes/kubernetes/blob/release-1.32/.go-version, it is 1.23.6 in 1.32 ... it is ok but sporadically there are changes in golang that can affect
@@ -0,0 +1,16 @@ | |||
ARG GOARCH="amd64" |
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.
We are fixing the architecture which breaks k8s cluster bootstrapping on T2A or C4A instances. cc @aojea
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.
not familiar with image names, but I assume this is related to arm64, is it?
backport of (#825)