-
Notifications
You must be signed in to change notification settings - Fork 71
Bug 1996306: Update kubebuilder installation in the build root dockerfile #172
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
Bug 1996306: Update kubebuilder installation in the build root dockerfile #172
Conversation
Update the base.Dockerfile (the dockerfile specified in the `build_root` stanza in the o/release ci-operator configuration) and ensure that kubebuilder can be successfully installed. The following errors were identified in recent e2e runs: ```bash $ curl -L "https://go.kubebuilder.io/dl/${KUBEBUILDER_RELEASE}/${OS}/${ARCH}" | tar -xz -C /tmp/ ... Complete! % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 68 100 68 0 0 230 0 --:--:-- --:--:-- --:--:-- 230 100 20604 100 20604 0 0 60958 0 --:--:-- --:--:-- --:--:-- 60958 gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now ``` When inspecting locally, the output file was HTML-based: ```bash $ file ./kubebuilder file kubebuilder kubebuilder: HTML document, UTF-8 Unicode text, with very long lines ``` Replace the kubebuilder release URL to use the github release download link, instead of the https://go.kubebuilder.io/dl domain.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: timflannagan 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 |
Note: our o/release ci-operator configuration doesn't not testing build root dockerfile changes in a PR:
Instead it defaults to building the HEAD version of this dockerfile, so we'll need to lgtm and override and failed tests. |
@timflannagan: This pull request references Bugzilla bug 1996306, which is valid. The bug has been moved to the POST state. The bug has been updated to refer to the pull request using the external bug tracker. 3 validation(s) were run on this bug
Requesting review from QA contact: 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. |
/override ci/prow/verify |
@timflannagan: Overrode contexts on behalf of timflannagan: ci/prow/e2e-aws-console-olm, ci/prow/e2e-aws-olm, ci/prow/e2e-gcp, ci/prow/e2e-upgrade, ci/prow/images, ci/prow/unit-api, ci/prow/unit-olm, ci/prow/unit-registry, ci/prow/verify 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. |
/lgtm |
@timflannagan: All pull requests linked via external trackers have merged: Bugzilla bug 1996306 has been moved to the MODIFIED state. 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. |
Update the base.Dockerfile (the dockerfile specified in the
build_root
stanza in the o/release ci-operator configuration) and ensure that
kubebuilder can be successfully installed.
The following errors were identified in recent e2e runs:
When inspecting locally, the output file was HTML-based:
Replace the kubebuilder release URL to use the github release download
link, instead of the https://go.kubebuilder.io/dl domain.