From 66126b544e987d65b637cb24588621c2249de116 Mon Sep 17 00:00:00 2001 From: Levi Blackstone Date: Tue, 17 Mar 2020 13:35:33 -0600 Subject: [PATCH] Test PR 3893 (#4090) Upgrade to helm 3 in the docker image Co-authored-by: Harrison Heck --- CHANGELOG.md | 3 +++ dist/pulumi/Dockerfile | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c558993a3..10ffc6c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ CHANGELOG ========= ## HEAD (Unreleased) +- Update to Helm v3 in pulumi Docker image + [#4090](https://github.com/pulumi/pulumi/pull/4090) + - Add ArrayMap builtin types to Go SDK [#4086](https://github.com/pulumi/pulumi/pull/4086) diff --git a/dist/pulumi/Dockerfile b/dist/pulumi/Dockerfile index 18cd5b91d..38806c60e 100644 --- a/dist/pulumi/Dockerfile +++ b/dist/pulumi/Dockerfile @@ -55,7 +55,9 @@ RUN wget -q https://packages.microsoft.com/config/ubuntu/19.04/packages-microsof dotnet-sdk-3.1 # Install Helm -RUN curl -L https://git.io/get_helm.sh | bash +RUN curl -L https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash && \ + helm repo add stable https://kubernetes-charts.storage.googleapis.com && \ + helm repo update # Passing --build-arg PULUMI_VERSION=vX.Y.Z will use that version # of the SDK. Otherwise, we use whatever get.pulumi.com thinks is