Merge pull request #5822 from daixiang0/patch-1

Update helm_create.md
pull/5845/head
Martin Hickey 6 years ago committed by GitHub
commit 5859403fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,7 +31,8 @@ import (
const createDesc = ` const createDesc = `
This command creates a chart directory along with the common files and This command creates a chart directory along with the common files and
directories used in a chart. 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 For example, 'helm create foo' will create a directory structure that looks
something like this: something like this:
@ -54,6 +55,10 @@ something like this:
do not exist, Helm will attempt to create them as it goes. If the given 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 destination exists and there are files in that directory, conflicting files
will be overwritten, but other files will be left alone. 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](https://helm.sh/docs/chart_template_guide).
` `
type createCmd struct { type createCmd struct {

@ -6,7 +6,8 @@ Create a new chart with the given name
This command creates a chart directory along with the common files and This command creates a chart directory along with the common files and
directories used in a chart. 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 For example, 'helm create foo' will create a directory structure that looks
something like this: something like this:
@ -30,6 +31,10 @@ 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 destination exists and there are files in that directory, conflicting files
will be overwritten, but other files will be left alone. 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](https://helm.sh/docs/chart_template_guide).
``` ```
helm create NAME [flags] helm create NAME [flags]
@ -58,4 +63,4 @@ helm create NAME [flags]
* [helm](helm.md) - The Helm package manager for Kubernetes. * [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 16-May-2019 ###### Auto generated by spf13/cobra on 5-Jun-2019

Loading…
Cancel
Save