The default behaviour of template is untouched and only changed when you use
the --computed-values flag which will output the computed values _instead_ of
the fully rendered manifest.
example:
helm template ./chart/name --computed-values
will output the values _after_ they have been resolved by the helm parsers.
Signed-off-by: James Payne <jamoflaw@gmail.com>
f.BoolVar(&validate,"validate",false,"validate your manifests against the Kubernetes cluster you are currently pointing at. This is the same validation performed on an install")
f.BoolVar(&includeCrds,"include-crds",false,"include CRDs in the templated output")
f.BoolVar(&skipTests,"skip-tests",false,"skip tests from templated output")
f.BoolVar(&computedValues,"computed-values",false,"template just the computed values as YAML rather than the manifest")
f.BoolVar(&client.IsUpgrade,"is-upgrade",false,"set .Release.IsUpgrade instead of .Release.IsInstall")
f.StringVar(&kubeVersion,"kube-version","","Kubernetes version used for Capabilities.KubeVersion")
f.StringArrayVarP(&extraAPIs,"api-versions","a",[]string{},"Kubernetes api versions used for Capabilities.APIVersions")