helm create
Create a new chart with the given name
Synopsis
This command creates a chart directory along with the common files and directories used in a chart. It provides a basic example and is not meant to cover all Kubernetes resources.
For example, 'helm create foo' will create a directory structure that looks something like this:
foo/
  |
  |- .helmignore        # Contains patterns to ignore when packaging Helm charts.
  |
  |- Chart.yaml         # Information about your chart
  |
  |- values.yaml        # The default values for your templates
  |
  |- charts/            # Charts that this chart depends on
  |
  |- templates/         # The template files
  |
  |- templates/tests/   # The test files
'helm create' takes a path for an argument. If directories in the given path do not exist, Helm will attempt to create them as it goes. If the given destination exists and there are files in that directory, conflicting files will be overwritten, but other files will be left alone.
The chart that is created by invoking this command contains a Deployment, Ingress and a Service. To use other Kubernetes resources with your chart, refer to The Chart Template Developer's Guide.
helm create NAME [flags]
Options
  -h, --help             help for create
  -p, --starter string   The name or absolute path to Helm starter scaffold
Options inherited from parent commands
      --debug                           Enable verbose output
      --home string                     Location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
      --host string                     Address of Tiller. Overrides $HELM_HOST
      --kube-context string             Name of the kubeconfig context to use
      --kubeconfig string               Absolute path of the kubeconfig file to be used
      --tiller-connection-timeout int   The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
      --tiller-namespace string         Namespace of Tiller (default "kube-system")
SEE ALSO
- helm - The Helm package manager for Kubernetes.