helm-template
helm-template copied to clipboard
Feature request: Flag for single template only
See https://github.com/helm/helm/issues/2587.
Howdy, I just found good workaround to this:
ht(){ awk -v f="$1$" '$0~f,/^---/'; }
usage:
helm template . | ht templates/ltsp-deployment.yaml
autocompletion is working 🙃
Although I personally prefer @kvaps' solution, if one wants to avoid awk magic, there's always:
helm template . --output-dir /tmp/helm && cat /tmp/helm/name/templates/ltsp-deployment.yaml
autocompletion also working ;-)