helm-push icon indicating copy to clipboard operation
helm-push copied to clipboard

Plugin install is failing with v0.10.0

Open mlb6 opened this issue 3 years ago • 1 comments

With the recent publication of v0.10.0 following Docker image is failing:

FROM alpine/helm:3.5.3 
RUN apk add --no-cache --virtual .build-tools curl git &&\
    helm plugin install https://github.com/chartmuseum/helm-push.git &&\
    apk del .build-tools

I'm getting the error :

Downloading and installing helm-push v0.10.0 ...
https://github.com/chartmuseum/helm-push/releases/download/v0.10.0/helm-push_0.10.0_linux_amd64.tar.gz
tar: invalid magic
tar: short read
Error: plugin install hook for "cm-push" exited with error

Is there a way to stick to an older helm-push tag ?

mlb6 avatar Oct 04 '21 18:10 mlb6

Just found the way to downgrade and stick to the previous tag:

helm plugin install --version v0.9.0 https://github.com/chartmuseum/helm-push.git

mlb6 avatar Oct 04 '21 19:10 mlb6