-
Notifications
You must be signed in to change notification settings - Fork 43
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
Kubectl binary #52
Kubectl binary #52
Conversation
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.
Two small changes, I'll also see if we already have access to EKS to add tests.
In any case we should add a step to print kubectl version
or something similar.
deployment/Dockerfile
Outdated
@@ -6,6 +6,12 @@ RUN \ | |||
bash \ | |||
curl \ | |||
jq \ | |||
zip | |||
zip \ | |||
sudo |
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 shouldn't need sudo
, since we don't switch off the root
user for those images.
deployment/Dockerfile
Outdated
sudo | ||
|
||
# https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl-binary-via-curl | ||
ARG KUBECTL_VERSION="v1.8.5" |
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.
Current version of kubectl
is already 1.9.0
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.
No description provided.