-
Notifications
You must be signed in to change notification settings - Fork 506
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
push-build: Support pushing fast builds to a /fast subdirectory #1389
Conversation
(This inverts the logic of a previous commit.) After reviewing the Kubernetes build scenarios and currently configured jobs, it becomes clear that a "fast" build (linux/amd64-only) is a special case. Fast builds only happen on the master branch, which means master version markers are the only ones experiencing collisions. That said, cross builds are the default build type across release branches and we should instead special-case fast builds, giving them their own subdirectory and version markers to leverage. The following markers should be built when an accompanying k/test-infra PR is merged: - latest-fast - latest-1-fast - latest-1.19-fast With fast builds being published to the following location: gs://kubernetes-release-dev/ci/fast/ Signed-off-by: Stephen Augustus <[email protected]>
@justaugustus: Adding label: Reasons for blocking this PR:[Changes to certain release tools can affect our ability to test, build, and release Kubernetes. This PR must be explicitly approved by SIG Release repo admins.] 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.
/lgtm
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cpanato, justaugustus, saschagrunert 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 bug cleanup
What this PR does / why we need it:
(Follow-up to #1387, #1386, and #1385.)
(This inverts the logic of a previous commit --> 1e56e60)
After reviewing the Kubernetes build scenarios and currently configured
jobs, it becomes clear that a "fast" build (linux/amd64-only) is a
special case.
Fast builds only happen on the master branch, which means master version
markers are the only ones experiencing collisions.
That said, cross builds are the default build type across release
branches and we should instead special-case fast builds, giving them
their own subdirectory and version markers to leverage.
The following markers should be built when an accompanying k/test-infra
PR is merged:
latest-fast
latest-1-fast
latest-1.19-fast
With fast builds being published to the following location:
gs://kubernetes-release-dev/ci/fast/
Signed-off-by: Stephen Augustus [email protected]
/assign @tpepper @hasheddan @saschagrunert @cpanato
cc: @kubernetes/release-engineering @BenTheElder @spiffxp
ref: kubernetes/sig-release#850, kubernetes/sig-release#759
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?