github.com/strongmonkey/helm@v2.7.2+incompatible/docs/helm/helm_template.md (about) 1 ## helm template 2 3 locally render templates 4 5 ### Synopsis 6 7 8 9 Render chart templates locally and display the output. 10 11 This does not require Tiller. However, any values that would normally be 12 looked up or retrieved in-cluster will be faked locally. Additionally, none 13 of the server-side testing of chart validity (e.g. whether an API is supported) 14 is done. 15 16 To render just one template in a chart, use '-x': 17 18 $ helm template mychart -x templates/deployment.yaml 19 20 21 ``` 22 helm template [flags] CHART 23 ``` 24 25 ### Options 26 27 ``` 28 -x, --execute stringArray only execute the given templates 29 --kube-version string override the Kubernetes version used as Capabilities.KubeVersion.Major/Minor (e.g. 1.7) 30 -n, --name string release name (default "RELEASE-NAME") 31 --name-template string specify template used to name the release 32 --namespace string namespace to install the release into 33 --notes show the computed NOTES.txt file as well 34 --set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2) 35 -f, --values valueFiles specify values in a YAML file (can specify multiple) (default []) 36 ``` 37 38 ### Options inherited from parent commands 39 40 ``` 41 --debug enable verbose output 42 --home string location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 43 --host string address of Tiller. Overrides $HELM_HOST 44 --kube-context string name of the kubeconfig context to use 45 --tiller-namespace string namespace of Tiller (default "kube-system") 46 ``` 47 48 ### SEE ALSO 49 * [helm](helm.md) - The Helm package manager for Kubernetes. 50 51 ###### Auto generated by spf13/cobra on 15-Nov-2017