github.com/valdemarpavesi/helm@v2.9.1+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      kubernetes version used as Capabilities.KubeVersion.Major/Minor (default "1.9")
    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        --output-dir string        writes the executed templates to files in output-dir instead of stdout
    35        --set stringArray          set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
    36        --set-string stringArray   set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
    37    -f, --values valueFiles        specify values in a YAML file (can specify multiple) (default [])
    38  ```
    39  
    40  ### Options inherited from parent commands
    41  
    42  ```
    43        --debug                           enable verbose output
    44        --home string                     location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    45        --host string                     address of Tiller. Overrides $HELM_HOST
    46        --kube-context string             name of the kubeconfig context to use
    47        --tiller-connection-timeout int   the duration (in seconds) Helm will wait to establish a connection to tiller (default 300)
    48        --tiller-namespace string         namespace of Tiller (default "kube-system")
    49  ```
    50  
    51  ### SEE ALSO
    52  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    53  
    54  ###### Auto generated by spf13/cobra on 9-Mar-2018