Shrink binary by replacing Helm engine dependency - #20
Merged
digitalstudium merged 1 commit intoAug 1, 2026
Conversation
The Helm template engine was imported solely to borrow its funcMap for parse-time syntax validation, pulling in ~169 helm.sh/k8s.io packages and dominating the binary (~38 MB). Reimplement the same function set locally from Sprig plus no-op placeholders for Helm's own additions, matching helm.sh/helm/v3/pkg/engine.funcMap (v3.19.0). This drops all Helm/k8s dependencies and shrinks the linux/amd64 binary to ~5.5 MB. Add -trimpath to the goreleaser build for reproducible, path-free binaries, and add tests asserting every Helm/Sprig function name still validates.
DanielHabenicht
force-pushed
the
optimize-go-build
branch
from
July 31, 2026 14:28
a54a4bf to
369ace5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As written in #16 (comment)
This would reduce the binary size substantially and allow for easier multi version support (and also adding support for helmfile syntax in a similar way).
Down side is that it has to be maintained separately instead of just using the dependeny.
I added
-trimpathto allow future builds to be identical wherever they are build (so sha's should be the same across different build devices)