fix: helm
This commit is contained in:
parent
b631b015a0
commit
c152593c99
2 changed files with 10 additions and 7 deletions
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue