github.com/felipejfc/helm@v2.1.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 inherited from parent commands
    38  
    39  ```
    40        --debug                 enable verbose output
    41        --home string           location of your Helm config. Overrides $HELM_HOME (default "/Users/mattbutcher/Code/helm_home")
    42        --host string           address of tiller. Overrides $HELM_HOST
    43        --kube-context string   name of the kubeconfig context to use
    44  ```
    45  
    46  ### SEE ALSO
    47  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    48  
    49  ###### Auto generated by spf13/cobra on 1-Nov-2016