From 1f164f81976a28fe0ca454c004499acfb299c033 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 12 Nov 2025 21:56:25 +0100 Subject: [PATCH] fix!: remove pre-installed plugins The pre-installed plugins must be installed individually. Otherwise runs this project into the problem, that we need to trigger a new release of the container image only to update the plugin in case of an issue. --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4df2b06..0e4e1ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,4 @@ RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM 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 - ENTRYPOINT [ "/usr/local/bin/helm" ]