From 7e7659480950cfe55b913558f754d5d2ef043cc7 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Tue, 17 Dec 2024 09:54:11 +0100 Subject: [PATCH] feat(helm-values-schema): init Install helm plugin helm-values-schema-json to generate a values.schema.json from multiple sources. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c8ccd4..de449e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ 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/helm-unittest/helm-unittest.git && \ + helm plugin install https://github.com/losisin/helm-values-schema-json.git ENTRYPOINT [ "/usr/local/bin/helm" ]