Compare commits

..

No commits in common. "7e7659480950cfe55b913558f754d5d2ef043cc7" and "361bfe9314c2f41cad0afdd526fdff33fecfea31" have entirely different histories.

View File

@ -5,14 +5,13 @@ ARG HELM_VERSION
RUN apk add bash curl git openssl && \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh
RUN if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi
RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi
RUN [[ ${HELM_VERSION} == "" ]]; bash /tmp/install.sh
RUN [[ ${HELM_VERSION} != "" ]]; bash /tmp/install.sh --version ${HELM_VERSION}
RUN rm /tmp/install.sh
# Install additionally helm plugins
RUN helm plugin install https://github.com/chartmuseum/helm-push.git && \
helm plugin install https://github.com/helm-unittest/helm-unittest.git && \
helm plugin install https://github.com/losisin/helm-values-schema-json.git
helm plugin install https://github.com/helm-unittest/helm-unittest.git
ENTRYPOINT [ "/usr/local/bin/helm" ]