diff --git a/docs/helm/helm.md b/docs/helm/helm.md index 2b15a3b12..0b70607ed 100644 --- a/docs/helm/helm.md +++ b/docs/helm/helm.md @@ -61,9 +61,10 @@ Environment: * [helm search](helm_search.md) - search for a keyword in charts * [helm serve](helm_serve.md) - start a local http web server * [helm status](helm_status.md) - displays the status of the named release +* [helm template](helm_template.md) - locally render templates * [helm test](helm_test.md) - test a release * [helm upgrade](helm_upgrade.md) - upgrade a release * [helm verify](helm_verify.md) - verify that a chart at the given path has been signed and is valid * [helm version](helm_version.md) - print the client/server version information -###### Auto generated by spf13/cobra on 23-Jun-2017 +###### Auto generated by spf13/cobra on 1-Sep-2017 diff --git a/docs/helm/helm_template.md b/docs/helm/helm_template.md new file mode 100644 index 000000000..0d719360a --- /dev/null +++ b/docs/helm/helm_template.md @@ -0,0 +1,49 @@ +## helm template + +locally render templates + +### Synopsis + + + +Render chart templates locally and display the output. + +This does not require Tiller. However, any values that would normally be +looked up or retrieved in-cluster will be faked locally. Additionally, none +of the server-side testing of chart validity (e.g. whether an API is supported) +is done. + +To render just one template in a chart, use '-x': + $ helm template mychart -x mychart/templates/deployment.yaml + + +``` +helm template [flags] CHART +``` + +### Options + +``` + -x, --execute stringArray only execute the given templates. + -n, --namespace string namespace (default "NAMESPACE") + --notes show the computed NOTES.txt file as well. + -r, --release string release name (default "RELEASE-NAME") + --set stringArray set values on the command line. See 'helm install -h' + -f, --values valueFiles specify one or more YAML files of values (default []) + -v, --verbose show the computed YAML values as well. +``` + +### Options inherited from parent commands + +``` + --debug enable verbose output + --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") + --host string address of Tiller. Overrides $HELM_HOST + --kube-context string name of the kubeconfig context to use + --tiller-namespace string namespace of Tiller (default "kube-system") +``` + +### SEE ALSO +* [helm](helm.md) - The Helm package manager for Kubernetes. + +###### Auto generated by spf13/cobra on 1-Sep-2017