Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Minor][FAB-6680] es mgmt helmfile version update #8

Merged
merged 10 commits into from
May 23, 2023
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apk add --update \
rm -rf /var/cache/apk/*

# Install helmfile plugin deps

RUN helm plugin uninstall diff
RUN helm plugin install https://github.com/databus23/helm-diff --version ${HELM_DIFF_VERSION}
RUN helm plugin install https://github.com/futuresimple/helm-secrets --version ${HELM_SECRETS_VERSION}
# I have no idea why but that is need otherwise
Expand All @@ -36,8 +36,12 @@ RUN python3 -m pip install ruamel.yaml
RUN python3 -m pip install azure-cli

# Install helmfile
ADD https://github.com/helmfile/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_${HELMFILE_VERSION}_linux_amd64.tar.gz /tmp/helmfile.tar.gz
RUN tar xzf /tmp/helmfile.tar.gz -C /tmp && \
mv /tmp/helmfile /bin/helmfile && \
rm -rf /tmp/helmfile.tar.gz

ADD https://github.com/roboll/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_linux_amd64 /bin/helmfile
# Set permissions for helmfile binary
RUN chmod 0755 /bin/helmfile

LABEL helm="${HELM_VERSION}"
Expand Down