diff --git a/cmd/helm/delete.go b/cmd/helm/delete.go index 67ab4379c..05c845344 100755 --- a/cmd/helm/delete.go +++ b/cmd/helm/delete.go @@ -80,7 +80,7 @@ func newDeleteCmd(c helm.Interface, out io.Writer) *cobra.Command { f.BoolVar(&del.dryRun, "dry-run", false, "simulate a delete") f.BoolVar(&del.disableHooks, "no-hooks", false, "prevent hooks from running during deletion") f.BoolVar(&del.purge, "purge", false, "remove the release from the store and make its name free for later use") - f.Int64Var(&del.timeout, "timeout", 300, "time in seconds to wait for any individual kubernetes operation (like Jobs for hooks)") + f.Int64Var(&del.timeout, "timeout", 300, "time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks)") return cmd } diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 7e08921ba..3e244e0cd 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -93,10 +93,10 @@ func setFlagsFromEnv(flags map[string]string, cmd *cobra.Command) { func addRootFlags(cmd *cobra.Command) { pf := cmd.PersistentFlags() pf.StringVar((*string)(&settings.Home), "home", helm_env.DefaultHelmHome, "location of your Helm config. Overrides $HELM_HOME") - pf.StringVar(&settings.TillerHost, "host", "", "address of tiller. Overrides $HELM_HOST") + pf.StringVar(&settings.TillerHost, "host", "", "address of Tiller. Overrides $HELM_HOST") pf.StringVar(&kubeContext, "kube-context", "", "name of the kubeconfig context to use") pf.BoolVar(&settings.Debug, "debug", false, "enable verbose output") - pf.StringVar(&settings.TillerNamespace, "tiller-namespace", tiller_env.DefaultTillerNamespace, "namespace of tiller") + pf.StringVar(&settings.TillerNamespace, "tiller-namespace", tiller_env.DefaultTillerNamespace, "namespace of Tiller") } func initRootFlags(cmd *cobra.Command) { diff --git a/cmd/helm/init.go b/cmd/helm/init.go index afa407bd9..f1162b4be 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -149,7 +149,7 @@ func (i *initCmd) tlsOptions() error { return nil } -// runInit initializes local config and installs tiller to Kubernetes Cluster +// run initializes local config and installs Tiller to Kubernetes cluster. func (i *initCmd) run() error { if err := i.tlsOptions(); err != nil { return err @@ -255,14 +255,14 @@ func (i *initCmd) run() error { fmt.Fprintln(i.out, "\nTiller (the helm server side component) has been installed into your Kubernetes Cluster.") } } else { - fmt.Fprintln(i.out, "Not installing tiller due to 'client-only' flag having been set") + fmt.Fprintln(i.out, "Not installing Tiller due to 'client-only' flag having been set") } fmt.Fprintln(i.out, "Happy Helming!") return nil } -// ensureDirectories checks to see if $HELM_HOME exists +// ensureDirectories checks to see if $HELM_HOME exists. // // If $HELM_HOME does not exist, this function will create it. func ensureDirectories(home helmpath.Home, out io.Writer) error { diff --git a/cmd/helm/init_test.go b/cmd/helm/init_test.go index e4622dad4..c871ef68b 100644 --- a/cmd/helm/init_test.go +++ b/cmd/helm/init_test.go @@ -128,7 +128,7 @@ func TestInitCmd_clientOnly(t *testing.T) { if len(fc.Actions()) != 0 { t.Error("expected client call") } - expected := "Not installing tiller due to 'client-only' flag having been set" + expected := "Not installing Tiller due to 'client-only' flag having been set" if !strings.Contains(buf.String(), expected) { t.Errorf("expected %q, got %q", expected, buf.String()) } diff --git a/cmd/helm/install.go b/cmd/helm/install.go index c6decc9cb..20373d952 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -186,7 +186,7 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command { f.BoolVar(&inst.verify, "verify", false, "verify the package before installing it") f.StringVar(&inst.keyring, "keyring", defaultKeyring(), "location of public keys used for verification") f.StringVar(&inst.version, "version", "", "specify the exact chart version to install. If this is not specified, the latest version is installed") - f.Int64Var(&inst.timeout, "timeout", 300, "time in seconds to wait for any individual kubernetes operation (like Jobs for hooks)") + f.Int64Var(&inst.timeout, "timeout", 300, "time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks)") f.BoolVar(&inst.wait, "wait", false, "if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment are in a ready state before marking the release as successful. It will wait for as long as --timeout") f.StringVar(&inst.repoURL, "repo", "", "chart repository url where to locate the requested chart") f.StringVar(&inst.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file") diff --git a/cmd/helm/installer/install.go b/cmd/helm/installer/install.go index 0be52d386..ae54fc331 100644 --- a/cmd/helm/installer/install.go +++ b/cmd/helm/installer/install.go @@ -30,7 +30,7 @@ import ( "k8s.io/client-go/pkg/apis/extensions/v1beta1" ) -// Install uses kubernetes client to install tiller. +// Install uses Kubernetes client to install Tiller. // // Returns an error if the command failed. func Install(client kubernetes.Interface, opts *Options) error { @@ -48,7 +48,7 @@ func Install(client kubernetes.Interface, opts *Options) error { return nil } -// Upgrade uses kubernetes client to upgrade tiller to current version. +// Upgrade uses Kubernetes client to upgrade Tiller to current version. // // Returns an error if the command failed. func Upgrade(client kubernetes.Interface, opts *Options) error { @@ -62,7 +62,7 @@ func Upgrade(client kubernetes.Interface, opts *Options) error { if _, err := client.Extensions().Deployments(opts.Namespace).Update(obj); err != nil { return err } - // If the service does not exists that would mean we are upgrading from a tiller version + // If the service does not exists that would mean we are upgrading from a Tiller version // that didn't deploy the service, so install it. _, err = client.Core().Services(opts.Namespace).Get(serviceName, metav1.GetOptions{}) if apierrors.IsNotFound(err) { @@ -71,7 +71,7 @@ func Upgrade(client kubernetes.Interface, opts *Options) error { return err } -// createDeployment creates the Tiller deployment reource +// createDeployment creates the Tiller deployment resource. func createDeployment(client extensionsclient.DeploymentsGetter, opts *Options) error { obj := deployment(opts) _, err := client.Deployments(obj.Namespace).Create(obj) diff --git a/cmd/helm/installer/options.go b/cmd/helm/installer/options.go index a76bb5d6f..ddb7706f8 100644 --- a/cmd/helm/installer/options.go +++ b/cmd/helm/installer/options.go @@ -25,51 +25,51 @@ import ( const defaultImage = "gcr.io/kubernetes-helm/tiller" -// Options control how to install tiller into a cluster, upgrade, and uninstall tiller from a cluster. +// Options control how to install Tiller into a cluster, upgrade, and uninstall Tiller from a cluster. type Options struct { - // EnableTLS instructs tiller to serve with TLS enabled. + // EnableTLS instructs Tiller to serve with TLS enabled. // // Implied by VerifyTLS. If set the TLSKey and TLSCert are required. EnableTLS bool - // VerifyTLS instructs tiller to serve with TLS enabled verify remote certificates. + // VerifyTLS instructs Tiller to serve with TLS enabled verify remote certificates. // // If set TLSKey, TLSCert, TLSCaCert are required. VerifyTLS bool - // UseCanary indicates that tiller should deploy using the latest tiller image. + // UseCanary indicates that Tiller should deploy using the latest Tiller image. UseCanary bool - // Namespace is the kubernetes namespace to use to deploy tiller. + // Namespace is the Kubernetes namespace to use to deploy Tiller. Namespace string - // ServiceAccount is the Kubernetes service account to add to tiller + // ServiceAccount is the Kubernetes service account to add to Tiller. ServiceAccount string - // ImageSpec indentifies the image tiller will use when deployed. + // ImageSpec indentifies the image Tiller will use when deployed. // // Valid if and only if UseCanary is false. ImageSpec string // TLSKeyFile identifies the file containing the pem encoded TLS private - // key tiller should use. + // key Tiller should use. // // Required and valid if and only if EnableTLS or VerifyTLS is set. TLSKeyFile string // TLSCertFile identifies the file containing the pem encoded TLS - // certificate tiller should use. + // certificate Tiller should use. // // Required and valid if and only if EnableTLS or VerifyTLS is set. TLSCertFile string // TLSCaCertFile identifies the file containing the pem encoded TLS CA - // certificate tiller should use to verify remotes certificates. + // certificate Tiller should use to verify remotes certificates. // // Required and valid if and only if VerifyTLS is set. TLSCaCertFile string - // EnableHostNetwork installs Tiller with net=host + // EnableHostNetwork installs Tiller with net=host. EnableHostNetwork bool } diff --git a/cmd/helm/installer/uninstall.go b/cmd/helm/installer/uninstall.go index 8c6c46bb4..f501bc36d 100644 --- a/cmd/helm/installer/uninstall.go +++ b/cmd/helm/installer/uninstall.go @@ -30,7 +30,7 @@ const ( serviceName = "tiller-deploy" ) -// Uninstall uses kubernetes client to uninstall tiller +// Uninstall uses Kubernetes client to uninstall Tiller. func Uninstall(client internalclientset.Interface, opts *Options) error { if err := deleteService(client.Core(), opts.Namespace); err != nil { return err diff --git a/cmd/helm/release_testing.go b/cmd/helm/release_testing.go index 1aadd4de3..09a6330c6 100644 --- a/cmd/helm/release_testing.go +++ b/cmd/helm/release_testing.go @@ -64,7 +64,7 @@ func newReleaseTestCmd(c helm.Interface, out io.Writer) *cobra.Command { } f := cmd.Flags() - f.Int64Var(&rlsTest.timeout, "timeout", 300, "time in seconds to wait for any individual kubernetes operation (like Jobs for hooks)") + f.Int64Var(&rlsTest.timeout, "timeout", 300, "time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks)") f.BoolVar(&rlsTest.cleanup, "cleanup", false, "delete test pods upon completion") return cmd diff --git a/cmd/helm/reset.go b/cmd/helm/reset.go index a8d4fa056..e8d3f1068 100644 --- a/cmd/helm/reset.go +++ b/cmd/helm/reset.go @@ -77,7 +77,7 @@ func newResetCmd(client helm.Interface, out io.Writer) *cobra.Command { } f := cmd.Flags() - f.BoolVarP(&d.force, "force", "f", false, "forces Tiller uninstall even if there are releases installed, or if tiller is not in ready state") + f.BoolVarP(&d.force, "force", "f", false, "forces Tiller uninstall even if there are releases installed, or if Tiller is not in ready state") f.BoolVar(&d.removeHelmHome, "remove-helm-home", false, "if set deletes $HELM_HOME") return cmd diff --git a/cmd/helm/rollback.go b/cmd/helm/rollback.go index 95c27e2a5..c55707f7c 100644 --- a/cmd/helm/rollback.go +++ b/cmd/helm/rollback.go @@ -81,7 +81,7 @@ func newRollbackCmd(c helm.Interface, out io.Writer) *cobra.Command { f.BoolVar(&rollback.recreate, "recreate-pods", false, "performs pods restart for the resource if applicable") f.BoolVar(&rollback.force, "force", false, "force resource update through delete/recreate if needed") f.BoolVar(&rollback.disableHooks, "no-hooks", false, "prevent hooks from running during rollback") - f.Int64Var(&rollback.timeout, "timeout", 300, "time in seconds to wait for any individual kubernetes operation (like Jobs for hooks)") + f.Int64Var(&rollback.timeout, "timeout", 300, "time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks)") f.BoolVar(&rollback.wait, "wait", false, "if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment are in a ready state before marking the release as successful. It will wait for as long as --timeout") return cmd diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index 7030740f5..a67864323 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -126,7 +126,7 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command { f.BoolVarP(&upgrade.install, "install", "i", false, "if a release by this name doesn't already exist, run an install") f.StringVar(&upgrade.namespace, "namespace", "default", "namespace to install the release into (only used if --install is set)") f.StringVar(&upgrade.version, "version", "", "specify the exact chart version to use. If this is not specified, the latest version is used") - f.Int64Var(&upgrade.timeout, "timeout", 300, "time in seconds to wait for any individual kubernetes operation (like Jobs for hooks)") + f.Int64Var(&upgrade.timeout, "timeout", 300, "time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks)") f.BoolVar(&upgrade.resetValues, "reset-values", false, "when upgrading, reset the values to the ones built into the chart") f.BoolVar(&upgrade.reuseValues, "reuse-values", false, "when upgrading, reuse the last release's values, and merge in any new values. If '--reset-values' is specified, this is ignored.") f.BoolVar(&upgrade.wait, "wait", false, "if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment are in a ready state before marking the release as successful. It will wait for as long as --timeout") diff --git a/docs/helm/helm.md b/docs/helm/helm.md index 4567049da..2b15a3b12 100644 --- a/docs/helm/helm.md +++ b/docs/helm/helm.md @@ -34,9 +34,9 @@ Environment: ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO @@ -66,4 +66,4 @@ Environment: * [helm verify](helm_verify.md) - verify that a chart at the given path has been signed and is valid * [helm version](helm_version.md) - print the client/server version information -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_completion.md b/docs/helm/helm_completion.md index 4b7c540a1..60cc7497c 100644 --- a/docs/helm/helm_completion.md +++ b/docs/helm/helm_completion.md @@ -26,12 +26,12 @@ helm completion SHELL ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_create.md b/docs/helm/helm_create.md index 8284be8ff..73d435d6c 100644 --- a/docs/helm/helm_create.md +++ b/docs/helm/helm_create.md @@ -45,12 +45,12 @@ helm create NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_delete.md b/docs/helm/helm_delete.md index 0d15b9d02..91fc51c22 100644 --- a/docs/helm/helm_delete.md +++ b/docs/helm/helm_delete.md @@ -23,7 +23,7 @@ helm delete [flags] RELEASE_NAME [...] --dry-run simulate a delete --no-hooks prevent hooks from running during deletion --purge remove the release from the store and make its name free for later use - --timeout int time in seconds to wait for any individual kubernetes operation (like Jobs for hooks) (default 300) + --timeout int time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) --tls enable TLS for request --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") @@ -36,12 +36,12 @@ helm delete [flags] RELEASE_NAME [...] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_dependency.md b/docs/helm/helm_dependency.md index 629a27d38..f3b77f092 100644 --- a/docs/helm/helm_dependency.md +++ b/docs/helm/helm_dependency.md @@ -59,9 +59,9 @@ for this case. ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO @@ -70,4 +70,4 @@ for this case. * [helm dependency list](helm_dependency_list.md) - list the dependencies for the given chart * [helm dependency update](helm_dependency_update.md) - update charts/ based on the contents of requirements.yaml -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_dependency_build.md b/docs/helm/helm_dependency_build.md index 9c5d6af78..d99eb0ea3 100644 --- a/docs/helm/helm_dependency_build.md +++ b/docs/helm/helm_dependency_build.md @@ -32,12 +32,12 @@ helm dependency build [flags] CHART ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm dependency](helm_dependency.md) - manage a chart's dependencies -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_dependency_list.md b/docs/helm/helm_dependency_list.md index ec5e861fd..74e4fb80e 100644 --- a/docs/helm/helm_dependency_list.md +++ b/docs/helm/helm_dependency_list.md @@ -24,12 +24,12 @@ helm dependency list [flags] CHART ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm dependency](helm_dependency.md) - manage a chart's dependencies -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_dependency_update.md b/docs/helm/helm_dependency_update.md index 8fb8fd2d1..2fa782c34 100644 --- a/docs/helm/helm_dependency_update.md +++ b/docs/helm/helm_dependency_update.md @@ -37,12 +37,12 @@ helm dependency update [flags] CHART ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm dependency](helm_dependency.md) - manage a chart's dependencies -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_fetch.md b/docs/helm/helm_fetch.md index a95781997..6556c74f8 100644 --- a/docs/helm/helm_fetch.md +++ b/docs/helm/helm_fetch.md @@ -46,12 +46,12 @@ helm fetch [flags] [chart URL | repo/chartname] [...] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_get.md b/docs/helm/helm_get.md index efa3c458a..418566c78 100644 --- a/docs/helm/helm_get.md +++ b/docs/helm/helm_get.md @@ -38,9 +38,9 @@ helm get [flags] RELEASE_NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO @@ -49,4 +49,4 @@ helm get [flags] RELEASE_NAME * [helm get manifest](helm_get_manifest.md) - download the manifest for a named release * [helm get values](helm_get_values.md) - download the values file for a named release -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_get_hooks.md b/docs/helm/helm_get_hooks.md index d2fad8b69..c90d5a5e4 100644 --- a/docs/helm/helm_get_hooks.md +++ b/docs/helm/helm_get_hooks.md @@ -26,12 +26,12 @@ helm get hooks [flags] RELEASE_NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm get](helm_get.md) - download a named release -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_get_manifest.md b/docs/helm/helm_get_manifest.md index 053ef652d..294ae9528 100644 --- a/docs/helm/helm_get_manifest.md +++ b/docs/helm/helm_get_manifest.md @@ -28,12 +28,12 @@ helm get manifest [flags] RELEASE_NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm get](helm_get.md) - download a named release -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_get_values.md b/docs/helm/helm_get_values.md index 5cdcbd7d2..7067d8ac0 100644 --- a/docs/helm/helm_get_values.md +++ b/docs/helm/helm_get_values.md @@ -25,12 +25,12 @@ helm get values [flags] RELEASE_NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm get](helm_get.md) - download a named release -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_history.md b/docs/helm/helm_history.md index 590c8a684..afd411515 100644 --- a/docs/helm/helm_history.md +++ b/docs/helm/helm_history.md @@ -41,12 +41,12 @@ helm history [flags] RELEASE_NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_home.md b/docs/helm/helm_home.md index 683142f71..c5c4f50e3 100644 --- a/docs/helm/helm_home.md +++ b/docs/helm/helm_home.md @@ -19,12 +19,12 @@ helm home ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_init.md b/docs/helm/helm_init.md index 81c9f40ea..9e237c06d 100644 --- a/docs/helm/helm_init.md +++ b/docs/helm/helm_init.md @@ -55,12 +55,12 @@ helm init ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 20-Jun-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_inspect.md b/docs/helm/helm_inspect.md index 30f09a72f..a740c3b27 100644 --- a/docs/helm/helm_inspect.md +++ b/docs/helm/helm_inspect.md @@ -33,9 +33,9 @@ helm inspect [CHART] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO @@ -43,4 +43,4 @@ helm inspect [CHART] * [helm inspect chart](helm_inspect_chart.md) - shows inspect chart * [helm inspect values](helm_inspect_values.md) - shows inspect values -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_inspect_chart.md b/docs/helm/helm_inspect_chart.md index 5e49e282b..e9d5bc08c 100644 --- a/docs/helm/helm_inspect_chart.md +++ b/docs/helm/helm_inspect_chart.md @@ -31,12 +31,12 @@ helm inspect chart [CHART] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm inspect](helm_inspect.md) - inspect a chart -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_inspect_values.md b/docs/helm/helm_inspect_values.md index f49215975..a151c404b 100644 --- a/docs/helm/helm_inspect_values.md +++ b/docs/helm/helm_inspect_values.md @@ -31,12 +31,12 @@ helm inspect values [CHART] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm inspect](helm_inspect.md) - inspect a chart -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_install.md b/docs/helm/helm_install.md index f8e0885ff..0a4cb48e8 100644 --- a/docs/helm/helm_install.md +++ b/docs/helm/helm_install.md @@ -81,7 +81,7 @@ helm install [CHART] --replace re-use the given name, even if that name is already used. This is unsafe in production --repo string chart repository url where to locate the requested chart --set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2) - --timeout int time in seconds to wait for any individual kubernetes operation (like Jobs for hooks) (default 300) + --timeout int time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) --tls enable TLS for request --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") @@ -98,12 +98,12 @@ helm install [CHART] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_lint.md b/docs/helm/helm_lint.md index 61e6737c4..618d5c5e2 100644 --- a/docs/helm/helm_lint.md +++ b/docs/helm/helm_lint.md @@ -29,12 +29,12 @@ helm lint [flags] PATH ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_list.md b/docs/helm/helm_list.md index a69f5ba2c..182000d10 100644 --- a/docs/helm/helm_list.md +++ b/docs/helm/helm_list.md @@ -62,12 +62,12 @@ helm list [flags] [FILTER] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_package.md b/docs/helm/helm_package.md index 595ec5564..88374b737 100644 --- a/docs/helm/helm_package.md +++ b/docs/helm/helm_package.md @@ -37,12 +37,12 @@ helm package [flags] [CHART_PATH] [...] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 5-Jun-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_plugin.md b/docs/helm/helm_plugin.md index b38f3e013..79653f5de 100644 --- a/docs/helm/helm_plugin.md +++ b/docs/helm/helm_plugin.md @@ -14,9 +14,9 @@ Manage client-side Helm plugins. ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO @@ -26,4 +26,4 @@ Manage client-side Helm plugins. * [helm plugin remove](helm_plugin_remove.md) - remove one or more Helm plugins * [helm plugin update](helm_plugin_update.md) - update one or more Helm plugins -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_plugin_install.md b/docs/helm/helm_plugin_install.md index 7b4f8904e..635e68fff 100644 --- a/docs/helm/helm_plugin_install.md +++ b/docs/helm/helm_plugin_install.md @@ -22,12 +22,12 @@ helm plugin install [options] ... ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_plugin_list.md b/docs/helm/helm_plugin_list.md index 53f37b8d0..823f4369b 100644 --- a/docs/helm/helm_plugin_list.md +++ b/docs/helm/helm_plugin_list.md @@ -16,12 +16,12 @@ helm plugin list ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_plugin_remove.md b/docs/helm/helm_plugin_remove.md index 0559f395c..8d02ee751 100644 --- a/docs/helm/helm_plugin_remove.md +++ b/docs/helm/helm_plugin_remove.md @@ -16,12 +16,12 @@ helm plugin remove ... ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_plugin_update.md b/docs/helm/helm_plugin_update.md index c0dac090a..9817c052b 100644 --- a/docs/helm/helm_plugin_update.md +++ b/docs/helm/helm_plugin_update.md @@ -16,12 +16,12 @@ helm plugin update ... ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_repo.md b/docs/helm/helm_repo.md index 3378a1850..06cc1f4b2 100644 --- a/docs/helm/helm_repo.md +++ b/docs/helm/helm_repo.md @@ -18,9 +18,9 @@ Example usage: ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO @@ -31,4 +31,4 @@ Example usage: * [helm repo remove](helm_repo_remove.md) - remove a chart repository * [helm repo update](helm_repo_update.md) - update information of available charts locally from chart repositories -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_repo_add.md b/docs/helm/helm_repo_add.md index f7f3e8727..34e1c5b8c 100644 --- a/docs/helm/helm_repo_add.md +++ b/docs/helm/helm_repo_add.md @@ -25,12 +25,12 @@ helm repo add [flags] [NAME] [URL] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_repo_index.md b/docs/helm/helm_repo_index.md index 79c8ee608..533e38848 100644 --- a/docs/helm/helm_repo_index.md +++ b/docs/helm/helm_repo_index.md @@ -32,12 +32,12 @@ helm repo index [flags] [DIR] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_repo_list.md b/docs/helm/helm_repo_list.md index 4f8f2e1dd..f4ab740af 100644 --- a/docs/helm/helm_repo_list.md +++ b/docs/helm/helm_repo_list.md @@ -16,12 +16,12 @@ helm repo list [flags] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_repo_remove.md b/docs/helm/helm_repo_remove.md index 075b15fce..0198f9618 100644 --- a/docs/helm/helm_repo_remove.md +++ b/docs/helm/helm_repo_remove.md @@ -16,12 +16,12 @@ helm repo remove [flags] [NAME] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_repo_update.md b/docs/helm/helm_repo_update.md index 3758f822f..61cca84eb 100644 --- a/docs/helm/helm_repo_update.md +++ b/docs/helm/helm_repo_update.md @@ -22,12 +22,12 @@ helm repo update ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_reset.md b/docs/helm/helm_reset.md index bc3299d48..bfd34d753 100644 --- a/docs/helm/helm_reset.md +++ b/docs/helm/helm_reset.md @@ -18,7 +18,7 @@ helm reset ### Options ``` - -f, --force forces Tiller uninstall even if there are releases installed, or if tiller is not in ready state + -f, --force forces Tiller uninstall even if there are releases installed, or if Tiller is not in ready state --remove-helm-home if set deletes $HELM_HOME --tls enable TLS for request --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") @@ -32,12 +32,12 @@ helm reset ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_rollback.md b/docs/helm/helm_rollback.md index 3a3ed1a24..53baef487 100644 --- a/docs/helm/helm_rollback.md +++ b/docs/helm/helm_rollback.md @@ -24,7 +24,7 @@ helm rollback [flags] [RELEASE] [REVISION] --force force resource update through delete/recreate if needed --no-hooks prevent hooks from running during rollback --recreate-pods performs pods restart for the resource if applicable - --timeout int time in seconds to wait for any individual kubernetes operation (like Jobs for hooks) (default 300) + --timeout int time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) --tls enable TLS for request --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") @@ -38,12 +38,12 @@ helm rollback [flags] [RELEASE] [REVISION] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_search.md b/docs/helm/helm_search.md index 48579c5b8..8522e4867 100644 --- a/docs/helm/helm_search.md +++ b/docs/helm/helm_search.md @@ -29,12 +29,12 @@ helm search [keyword] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_serve.md b/docs/helm/helm_serve.md index 1a317e9e4..989694103 100644 --- a/docs/helm/helm_serve.md +++ b/docs/helm/helm_serve.md @@ -37,12 +37,12 @@ helm serve ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_status.md b/docs/helm/helm_status.md index a737d7a64..82fa9faec 100644 --- a/docs/helm/helm_status.md +++ b/docs/helm/helm_status.md @@ -36,12 +36,12 @@ helm status [flags] RELEASE_NAME ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_test.md b/docs/helm/helm_test.md index 8d7b39a59..ae6f3e0cd 100644 --- a/docs/helm/helm_test.md +++ b/docs/helm/helm_test.md @@ -20,7 +20,7 @@ helm test [RELEASE] ``` --cleanup delete test pods upon completion - --timeout int time in seconds to wait for any individual kubernetes operation (like Jobs for hooks) (default 300) + --timeout int time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) --tls enable TLS for request --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") @@ -33,12 +33,12 @@ helm test [RELEASE] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_upgrade.md b/docs/helm/helm_upgrade.md index 1fbefcba3..934cadd13 100644 --- a/docs/helm/helm_upgrade.md +++ b/docs/helm/helm_upgrade.md @@ -51,7 +51,7 @@ helm upgrade [RELEASE] [CHART] --reset-values when upgrading, reset the values to the ones built into the chart --reuse-values when upgrading, reuse the last release's values, and merge in any new values. If '--reset-values' is specified, this is ignored. --set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2) - --timeout int time in seconds to wait for any individual kubernetes operation (like Jobs for hooks) (default 300) + --timeout int time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) --tls enable TLS for request --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") @@ -68,12 +68,12 @@ helm upgrade [RELEASE] [CHART] ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_verify.md b/docs/helm/helm_verify.md index 10ddab059..cd967c52e 100644 --- a/docs/helm/helm_verify.md +++ b/docs/helm/helm_verify.md @@ -31,12 +31,12 @@ helm verify [flags] PATH ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017 diff --git a/docs/helm/helm_version.md b/docs/helm/helm_version.md index 16e2f5b92..3b55fafa0 100644 --- a/docs/helm/helm_version.md +++ b/docs/helm/helm_version.md @@ -45,12 +45,12 @@ helm version ``` --debug enable verbose output --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") - --host string address of tiller. Overrides $HELM_HOST + --host string address of Tiller. Overrides $HELM_HOST --kube-context string name of the kubeconfig context to use - --tiller-namespace string namespace of tiller (default "kube-system") + --tiller-namespace string namespace of Tiller (default "kube-system") ``` ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 29-May-2017 +###### Auto generated by spf13/cobra on 23-Jun-2017