fix!: remove pre-installed plugins
Some checks failed
Auto release / tag_on_change (push) Successful in 8s
Build / build-amd64 (push) Successful in 21s
Lint Markdown files / markdown-lint (push) Successful in 4s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 4s
Release / push-arm64 (push) Has been cancelled
Release / push-manifest (push) Has been cancelled
Release / sync-to-hub-docker-io (push) Has been cancelled
Release / push-amd64 (push) Has been cancelled
Build / build-arm64 (push) Successful in 55s

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.
This commit is contained in:
2025-11-12 21:56:25 +01:00
parent 761b2d5416
commit 1f164f8197

View File

@@ -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" ]