Add Helm CLI to Docker image #49
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The Dev Container image does not include the
helmCLI. This prevents users from runninghelm lint,helm template, or deploying charts from within the container — which is a common workflow when working on Kubernetes projects (including this repo's own chart).Expected Behavior
helmshould be available in the container's$PATHso users can:helmin CI validation steps run inside the containerProposed Solution
Add Helm installation to the Dockerfile, e.g.:
Or pin a specific version:
Pinning is preferred to match the project's move toward reproducible builds (see Phase 0 changes in
c8a7bbc).Context
Discovered while attempting to run
helm lintfrom within the dev container to validate chart changes.