-
Notifications
You must be signed in to change notification settings - Fork 39.8k
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
busybox image: add symlink for /bin/tee #55417
busybox image: add symlink for /bin/tee #55417
Conversation
This makes the bazel image more similar to the bash build, which uses the image from the docker registry. tee is used by e.g. kops to send logs to both a /var/log file and to stdout (which is then captured by docker).
@justinsb is there an open PR for this change against master, or is not needed there? |
This should fix e.g. https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr-logs/pull/52755/pull-kubernetes-e2e-kops-aws-prow/18/ My theory is that CI builds build busybox via bazel, and these images don't have /bin/tee (unlike the "real" images built by the bash process, which use the "official" docker build) cc @krzyzacy |
And @cblecker it looks like in 1.8 we switched to use the official docker image in the bazel build, so this can't apply to master. Not sure if we want to backfix 1.7, as this seems to only affect CI... |
/retest |
1 similar comment
/retest |
/lgtm |
can someone approve this PR :-) We are blocking on this to migrate kops presubmit off Jenkins |
/approve no-issue |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cblecker, justinsb, krzyzacy Associated issue requirement bypassed by: cblecker The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
ping @mwielgus for cherry-pick approval |
Removing label |
/retest Review the full test history for this PR. |
1 similar comment
/retest Review the full test history for this PR. |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. |
This makes the bazel image more similar to the bash build, which uses
the image from the docker registry.
tee is used by e.g. kops to send logs to both a /var/log file and to
stdout (which is then captured by docker).