From a19bc4b9ca0e49eaafe74130cfe3800a5fe72484 Mon Sep 17 00:00:00 2001 From: DJ Mountney Date: Thu, 19 Sep 2019 11:32:01 -0700 Subject: [PATCH] Bump the helm and kubectl used in the charts base image The kubectl is far out of date, bump it to the version we are currently using elsewhere in the chart The Helm version is recent, but there is a newer patch that fixes some issues with CRD updating we are encountering in the charts. --- Dockerfile.gitlab-charts-build-base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.gitlab-charts-build-base b/Dockerfile.gitlab-charts-build-base index ff1aad0..988312f 100644 --- a/Dockerfile.gitlab-charts-build-base +++ b/Dockerfile.gitlab-charts-build-base @@ -1,11 +1,11 @@ FROM ruby:2.4.5-alpine MAINTAINER GitLab Distribution Team -ENV HELM_VERSION=2.14.2 +ENV HELM_VERSION=2.14.3 ENV HELM_URL=https://kubernetes-helm.storage.googleapis.com/helm-v${HELM_VERSION}-linux-amd64.tar.gz # kubectl (possibly in gcloud?) -ENV KUBECTL_VERSION=1.9.10 +ENV KUBECTL_VERSION=1.12.10 ENV KUBECTL_URL=https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl # Install dependencies