Skip to content

Commit

Permalink
e2e image needs 1.14.10 kubectl (googleforgames#1470)
Browse files Browse the repository at this point in the history
This fixes the break in CI we currently have. We missed changing the
kubectl version in the e2e image when we upgraded to Kubernetes 1.14

Now the 1.13.x version is no longer available on google cloud storage,
so things are breaking.

This should fix that!
  • Loading branch information
markmandel authored and ilkercelikyilmaz committed Oct 23, 2020
1 parent 075f7e1 commit b4ed497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/e2e-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \
ENV PATH /usr/local/go/bin:/go/bin:$PATH

# install kubectl without gcloud as we want the last version
ENV KUBECTL_VER 1.13.12
ENV KUBECTL_VER 1.14.10
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl && \
chmod go+rx ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl
Expand Down

0 comments on commit b4ed497

Please sign in to comment.