From eaef3cdfccadddfae113bf47a0db4d97d994c81b Mon Sep 17 00:00:00 2001 From: Robert Bailey Date: Thu, 18 Jul 2019 14:47:59 -0700 Subject: [PATCH] Update the version of kubectl in the build image to 1.12.10. --- build/e2e-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/e2e-image/Dockerfile b/build/e2e-image/Dockerfile index 5597fa3479..15748c14c6 100644 --- a/build/e2e-image/Dockerfile +++ b/build/e2e-image/Dockerfile @@ -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.11.5 +ENV KUBECTL_VER 1.12.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