From 309b02b5707c284ec0559d4a958769dc1fcc6251 Mon Sep 17 00:00:00 2001 From: Brad Davidson Date: Tue, 9 Nov 2021 17:03:44 -0800 Subject: [PATCH] Add migration for apiregistration.k8s.io Signed-off-by: Brad Davidson --- package/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/Dockerfile b/package/Dockerfile index 93d67cc..59669c6 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -11,10 +11,10 @@ RUN apk add -U curl ca-certificates build-base binutils-gold ARG ARCH COPY --from=extract /usr/bin/helm_v3 /usr/bin/helm RUN mkdir -p /go/src/github.com/k3s-io/helm-set-status && \ - curl -L https://github.com/k3s-io/helm-set-status/archive/refs/tags/v0.1.2.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/k3s-io/helm-set-status && \ + curl -sL https://github.com/k3s-io/helm-set-status/archive/refs/tags/v0.1.2.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/k3s-io/helm-set-status && \ make -C /go/src/github.com/k3s-io/helm-set-status install RUN mkdir -p /go/src/github.com/helm/helm-mapkubeapis && \ - curl -L https://github.com/helm/helm-mapkubeapis/archive/refs/tags/v0.1.0.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/helm/helm-mapkubeapis && \ + curl -sL https://github.com/helm/helm-mapkubeapis/archive/09f250b089fa7f38adcb27769c1c3c50dcb5de5e.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/helm/helm-mapkubeapis && \ make -C /go/src/github.com/helm/helm-mapkubeapis && \ mkdir -p /root/.local/share/helm/plugins/helm-mapkubeapis && \ cp -vr /go/src/github.com/helm/helm-mapkubeapis/plugin.yaml \