Skip to content
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.

upgrade helm and helmfile to get latest fixes #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM centos:7
RUN mkdir /out

# helmfile
ENV HELMFILE_VERSION 0.114.0
ENV HELMFILE_VERSION 0.125.0
RUN curl -LO https://github.com/roboll/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_linux_amd64 && \
mv helmfile_linux_amd64 /out/helmfile && \
chmod +x /out/helmfile
Expand All @@ -15,7 +15,7 @@ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBEC
chmod +x /out/kubectl

# helm 3
ENV HELM3_VERSION 3.2.0
ENV HELM3_VERSION 3.2.4
RUN curl -f -L https://get.helm.sh/helm-v${HELM3_VERSION}-linux-386.tar.gz | tar xzv && \
mv linux-386/helm /usr/local/bin/helm && \
mkdir -p $HOME/.jx/plugins/bin && \
Expand Down