fix: helm

This commit is contained in:
devthejo 2023-12-16 12:38:37 +01:00
parent b631b015a0
commit c152593c99
Signed by: devthejo
GPG key ID: C04215C627711F5C
2 changed files with 10 additions and 7 deletions

View file

@ -1,5 +1,10 @@
FROM devthefuture/init-container-toolbox:latest
COPY src/entrypoint.sh /entrypoint.sh
USER 0
ARG HELM_VERSION=3.10.0
RUN curl -sSL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz \
&& cp linux-amd64/helm /usr/local/bin/helm
USER 1000
COPY src/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

View file

@ -26,10 +26,6 @@ CHARTS=()
CHARTS_TMP_DIR=$(mktemp -d)
main() {
if [[ -z "$HELM_VERSION" ]]; then
HELM_VERSION="3.10.0"
fi
if [[ -z "$CHARTS_DIR" ]]; then
CHARTS_DIR="charts"
fi
@ -105,8 +101,10 @@ download() {
pushd $tmpDir >& /dev/null
curl -sSL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz
cp linux-amd64/helm /usr/local/bin/helm
if [ -n "$HELM_VERSION" ]; then
curl -sSL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz
cp linux-amd64/helm /usr/local/bin/helm
fi
popd >& /dev/null
rm -rf $tmpDir