-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Add kubectl to e2e image. #2182
Conversation
guess you also want to bump the image |
@krzyzacy I do, but I have a few PRs out for modifying the same image concurrently, so I was going to wait until a few (or all of them) got merged and then send a follow-up PR to bump the image and reference all of the PRs it would include. Otherwise, I have to guess at the order they'll get merged in so each can bump the image id appropriately. |
@@ -42,6 +42,9 @@ RUN mkdir -p /tmp/terraform/ && \ | |||
) && \ | |||
rm -rf /tmp/terraform | |||
|
|||
# Needed by kubetest | |||
RUN gcloud components update kubectl |
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.
Would this be better here: https://github.com/kubernetes/test-infra/blob/master/jenkins/e2e-image/Dockerfile#L50 ?
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.
Sure. Let me update to move it there.
/assign |
This is a dependency of kubetest.
I've now moved the command into the base e2e image. |
/lgtm |
This is a dependency of
kubetest
, and I believe it got removed from the base image somewhere along the way.