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