github.com/vtuson/helm@v2.8.2+incompatible/docs/helm/helm_create.md (about)

     1  ## helm create
     2  
     3  create a new chart with the given name
     4  
     5  ### Synopsis
     6  
     7  
     8  
     9  This command creates a chart directory along with the common files and
    10  directories used in a chart.
    11  
    12  For example, 'helm create foo' will create a directory structure that looks
    13  something like this:
    14  
    15  	foo/
    16  	  |
    17  	  |- .helmignore   # Contains patterns to ignore when packaging Helm charts.
    18  	  |
    19  	  |- Chart.yaml    # Information about your chart
    20  	  |
    21  	  |- values.yaml   # The default values for your templates
    22  	  |
    23  	  |- charts/       # Charts that this chart depends on
    24  	  |
    25  	  |- templates/    # The template files
    26  
    27  'helm create' takes a path for an argument. If directories in the given path
    28  do not exist, Helm will attempt to create them as it goes. If the given
    29  destination exists and there are files in that directory, conflicting files
    30  will be overwritten, but other files will be left alone.
    31  
    32  
    33  ```
    34  helm create NAME
    35  ```
    36  
    37  ### Options
    38  
    39  ```
    40    -p, --starter string   the named Helm starter scaffold
    41  ```
    42  
    43  ### Options inherited from parent commands
    44  
    45  ```
    46        --debug                           enable verbose output
    47        --home string                     location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    48        --host string                     address of Tiller. Overrides $HELM_HOST
    49        --kube-context string             name of the kubeconfig context to use
    50        --tiller-connection-timeout int   the duration (in seconds) Helm will wait to establish a connection to tiller (default 300)
    51        --tiller-namespace string         namespace of Tiller (default "kube-system")
    52  ```
    53  
    54  ### SEE ALSO
    55  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    56  
    57  ###### Auto generated by spf13/cobra on 8-Mar-2018