fix(helm): add --devel flag to allow dev releases again

2.4.0 stopped installing development versions by default. This allows
the user to re-enable that support by setting --devel.

Closes #2407
parent 7e82a076
...@@ -61,6 +61,8 @@ type fetchCmd struct { ...@@ -61,6 +61,8 @@ type fetchCmd struct {
keyFile string keyFile string
caFile string caFile string
devel bool
out io.Writer out io.Writer
} }
...@@ -75,6 +77,12 @@ func newFetchCmd(out io.Writer) *cobra.Command { ...@@ -75,6 +77,12 @@ func newFetchCmd(out io.Writer) *cobra.Command {
if len(args) == 0 { if len(args) == 0 {
return fmt.Errorf("need at least one argument, url or repo/name of the chart") return fmt.Errorf("need at least one argument, url or repo/name of the chart")
} }
if fch.version == "" && fch.devel {
debug("setting version to >0.0.0-a")
fch.version = ">0.0.0-a"
}
for i := 0; i < len(args); i++ { for i := 0; i < len(args); i++ {
fch.chartRef = args[i] fch.chartRef = args[i]
if err := fch.run(); err != nil { if err := fch.run(); err != nil {
...@@ -97,6 +105,7 @@ func newFetchCmd(out io.Writer) *cobra.Command { ...@@ -97,6 +105,7 @@ func newFetchCmd(out io.Writer) *cobra.Command {
f.StringVar(&fch.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file") f.StringVar(&fch.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file")
f.StringVar(&fch.keyFile, "key-file", "", "identify HTTPS client using this SSL key file") f.StringVar(&fch.keyFile, "key-file", "", "identify HTTPS client using this SSL key file")
f.StringVar(&fch.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle") f.StringVar(&fch.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle")
f.BoolVar(&fch.devel, "devel", false, "use development versions, too. Equivalent to version '>0.0.0-a'. If --version is set, this is ignored.")
return cmd return cmd
} }
......
...@@ -117,6 +117,7 @@ type installCmd struct { ...@@ -117,6 +117,7 @@ type installCmd struct {
timeout int64 timeout int64
wait bool wait bool
repoURL string repoURL string
devel bool
certFile string certFile string
keyFile string keyFile string
...@@ -155,6 +156,13 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command { ...@@ -155,6 +156,13 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command {
if err := checkArgsLength(len(args), "chart name"); err != nil { if err := checkArgsLength(len(args), "chart name"); err != nil {
return err return err
} }
debug("Original chart version: %q", inst.version)
if inst.version == "" && inst.devel {
debug("setting version to >0.0.0-a")
inst.version = ">0.0.0-a"
}
cp, err := locateChartPath(inst.repoURL, args[0], inst.version, inst.verify, inst.keyring, cp, err := locateChartPath(inst.repoURL, args[0], inst.version, inst.verify, inst.keyring,
inst.certFile, inst.keyFile, inst.caFile) inst.certFile, inst.keyFile, inst.caFile)
if err != nil { if err != nil {
...@@ -184,6 +192,7 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command { ...@@ -184,6 +192,7 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command {
f.StringVar(&inst.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file") f.StringVar(&inst.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file")
f.StringVar(&inst.keyFile, "key-file", "", "identify HTTPS client using this SSL key file") f.StringVar(&inst.keyFile, "key-file", "", "identify HTTPS client using this SSL key file")
f.StringVar(&inst.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle") f.StringVar(&inst.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle")
f.BoolVar(&inst.devel, "devel", false, "use development versions, too. Equivalent to version '>0.0.0-a'. If --version is set, this is ignored.")
return cmd return cmd
} }
......
...@@ -75,6 +75,7 @@ type upgradeCmd struct { ...@@ -75,6 +75,7 @@ type upgradeCmd struct {
reuseValues bool reuseValues bool
wait bool wait bool
repoURL string repoURL string
devel bool
certFile string certFile string
keyFile string keyFile string
...@@ -98,6 +99,11 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command { ...@@ -98,6 +99,11 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command {
return err return err
} }
if upgrade.version == "" && upgrade.devel {
debug("setting version to >0.0.0-a")
upgrade.version = ">0.0.0-a"
}
upgrade.release = args[0] upgrade.release = args[0]
upgrade.chart = args[1] upgrade.chart = args[1]
upgrade.client = ensureHelmClient(upgrade.client) upgrade.client = ensureHelmClient(upgrade.client)
...@@ -126,6 +132,7 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command { ...@@ -126,6 +132,7 @@ func newUpgradeCmd(client helm.Interface, out io.Writer) *cobra.Command {
f.StringVar(&upgrade.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file") f.StringVar(&upgrade.certFile, "cert-file", "", "identify HTTPS client using this SSL certificate file")
f.StringVar(&upgrade.keyFile, "key-file", "", "identify HTTPS client using this SSL key file") f.StringVar(&upgrade.keyFile, "key-file", "", "identify HTTPS client using this SSL key file")
f.StringVar(&upgrade.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle") f.StringVar(&upgrade.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle")
f.BoolVar(&upgrade.devel, "devel", false, "use development versions, too. Equivalent to version '>0.0.0-a'. If --version is set, this is ignored.")
f.MarkDeprecated("disable-hooks", "use --no-hooks instead") f.MarkDeprecated("disable-hooks", "use --no-hooks instead")
......
...@@ -66,4 +66,4 @@ Environment: ...@@ -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 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 * [helm version](helm_version.md) - print the client/server version information
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -34,4 +34,4 @@ helm completion SHELL ...@@ -34,4 +34,4 @@ helm completion SHELL
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -53,4 +53,4 @@ helm create NAME ...@@ -53,4 +53,4 @@ helm create NAME
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -44,4 +44,4 @@ helm delete [flags] RELEASE_NAME [...] ...@@ -44,4 +44,4 @@ helm delete [flags] RELEASE_NAME [...]
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -70,4 +70,4 @@ for this case. ...@@ -70,4 +70,4 @@ for this case.
* [helm dependency list](helm_dependency_list.md) - list the dependencies for the given chart * [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 * [helm dependency update](helm_dependency_update.md) - update charts/ based on the contents of requirements.yaml
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -40,4 +40,4 @@ helm dependency build [flags] CHART ...@@ -40,4 +40,4 @@ helm dependency build [flags] CHART
### SEE ALSO ### SEE ALSO
* [helm dependency](helm_dependency.md) - manage a chart's dependencies * [helm dependency](helm_dependency.md) - manage a chart's dependencies
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -32,4 +32,4 @@ helm dependency list [flags] CHART ...@@ -32,4 +32,4 @@ helm dependency list [flags] CHART
### SEE ALSO ### SEE ALSO
* [helm dependency](helm_dependency.md) - manage a chart's dependencies * [helm dependency](helm_dependency.md) - manage a chart's dependencies
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -45,4 +45,4 @@ helm dependency update [flags] CHART ...@@ -45,4 +45,4 @@ helm dependency update [flags] CHART
### SEE ALSO ### SEE ALSO
* [helm dependency](helm_dependency.md) - manage a chart's dependencies * [helm dependency](helm_dependency.md) - manage a chart's dependencies
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -30,6 +30,7 @@ helm fetch [flags] [chart URL | repo/chartname] [...] ...@@ -30,6 +30,7 @@ helm fetch [flags] [chart URL | repo/chartname] [...]
--ca-file string verify certificates of HTTPS-enabled servers using this CA bundle --ca-file string verify certificates of HTTPS-enabled servers using this CA bundle
--cert-file string identify HTTPS client using this SSL certificate file --cert-file string identify HTTPS client using this SSL certificate file
-d, --destination string location to write the chart. If this and tardir are specified, tardir is appended to this (default ".") -d, --destination string location to write the chart. If this and tardir are specified, tardir is appended to this (default ".")
--devel use development versions, too. Equivalent to version '>0.0.0-a'. If --version is set, this is ignored.
--key-file string identify HTTPS client using this SSL key file --key-file string identify HTTPS client using this SSL key file
--keyring string keyring containing public keys (default "~/.gnupg/pubring.gpg") --keyring string keyring containing public keys (default "~/.gnupg/pubring.gpg")
--prov fetch the provenance file, but don't perform verification --prov fetch the provenance file, but don't perform verification
...@@ -53,4 +54,4 @@ helm fetch [flags] [chart URL | repo/chartname] [...] ...@@ -53,4 +54,4 @@ helm fetch [flags] [chart URL | repo/chartname] [...]
### SEE ALSO ### SEE ALSO
* [helm](helm.md) - The Helm package manager for Kubernetes. * [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 24-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -49,4 +49,4 @@ helm get [flags] RELEASE_NAME ...@@ -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 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 * [helm get values](helm_get_values.md) - download the values file for a named release
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -34,4 +34,4 @@ helm get hooks [flags] RELEASE_NAME ...@@ -34,4 +34,4 @@ helm get hooks [flags] RELEASE_NAME
### SEE ALSO ### SEE ALSO
* [helm get](helm_get.md) - download a named release * [helm get](helm_get.md) - download a named release
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -36,4 +36,4 @@ helm get manifest [flags] RELEASE_NAME ...@@ -36,4 +36,4 @@ helm get manifest [flags] RELEASE_NAME
### SEE ALSO ### SEE ALSO
* [helm get](helm_get.md) - download a named release * [helm get](helm_get.md) - download a named release
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -33,4 +33,4 @@ helm get values [flags] RELEASE_NAME ...@@ -33,4 +33,4 @@ helm get values [flags] RELEASE_NAME
### SEE ALSO ### SEE ALSO
* [helm get](helm_get.md) - download a named release * [helm get](helm_get.md) - download a named release
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -49,4 +49,4 @@ helm history [flags] RELEASE_NAME ...@@ -49,4 +49,4 @@ helm history [flags] RELEASE_NAME
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -27,4 +27,4 @@ helm home ...@@ -27,4 +27,4 @@ helm home
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -63,4 +63,4 @@ helm init ...@@ -63,4 +63,4 @@ helm init
### SEE ALSO ### SEE ALSO
* [helm](helm.md) - The Helm package manager for Kubernetes. * [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 1-May-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -43,4 +43,4 @@ helm inspect [CHART] ...@@ -43,4 +43,4 @@ helm inspect [CHART]
* [helm inspect chart](helm_inspect_chart.md) - shows inspect chart * [helm inspect chart](helm_inspect_chart.md) - shows inspect chart
* [helm inspect values](helm_inspect_values.md) - shows inspect values * [helm inspect values](helm_inspect_values.md) - shows inspect values
###### Auto generated by spf13/cobra on 24-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -39,4 +39,4 @@ helm inspect chart [CHART] ...@@ -39,4 +39,4 @@ helm inspect chart [CHART]
### SEE ALSO ### SEE ALSO
* [helm inspect](helm_inspect.md) - inspect a chart * [helm inspect](helm_inspect.md) - inspect a chart
###### Auto generated by spf13/cobra on 24-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -39,4 +39,4 @@ helm inspect values [CHART] ...@@ -39,4 +39,4 @@ helm inspect values [CHART]
### SEE ALSO ### SEE ALSO
* [helm inspect](helm_inspect.md) - inspect a chart * [helm inspect](helm_inspect.md) - inspect a chart
###### Auto generated by spf13/cobra on 24-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -70,6 +70,7 @@ helm install [CHART] ...@@ -70,6 +70,7 @@ helm install [CHART]
``` ```
--ca-file string verify certificates of HTTPS-enabled servers using this CA bundle --ca-file string verify certificates of HTTPS-enabled servers using this CA bundle
--cert-file string identify HTTPS client using this SSL certificate file --cert-file string identify HTTPS client using this SSL certificate file
--devel use development versions, too. Equivalent to version '>0.0.0-a'. If --version is set, this is ignored.
--dry-run simulate an install --dry-run simulate an install
--key-file string identify HTTPS client using this SSL key file --key-file string identify HTTPS client using this SSL key file
--keyring string location of public keys used for verification (default "~/.gnupg/pubring.gpg") --keyring string location of public keys used for verification (default "~/.gnupg/pubring.gpg")
...@@ -105,4 +106,4 @@ helm install [CHART] ...@@ -105,4 +106,4 @@ helm install [CHART]
### SEE ALSO ### SEE ALSO
* [helm](helm.md) - The Helm package manager for Kubernetes. * [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 24-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -37,4 +37,4 @@ helm lint [flags] PATH ...@@ -37,4 +37,4 @@ helm lint [flags] PATH
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -70,4 +70,4 @@ helm list [flags] [FILTER] ...@@ -70,4 +70,4 @@ helm list [flags] [FILTER]
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -44,4 +44,4 @@ helm package [flags] [CHART_PATH] [...] ...@@ -44,4 +44,4 @@ helm package [flags] [CHART_PATH] [...]
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -26,4 +26,4 @@ Manage client-side Helm plugins. ...@@ -26,4 +26,4 @@ Manage client-side Helm plugins.
* [helm plugin remove](helm_plugin_remove.md) - remove one or more 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 * [helm plugin update](helm_plugin_update.md) - update one or more Helm plugins
###### Auto generated by spf13/cobra on 6-May-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -30,4 +30,4 @@ helm plugin install [options] <path|url>... ...@@ -30,4 +30,4 @@ helm plugin install [options] <path|url>...
### SEE ALSO ### SEE ALSO
* [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -24,4 +24,4 @@ helm plugin list ...@@ -24,4 +24,4 @@ helm plugin list
### SEE ALSO ### SEE ALSO
* [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -24,4 +24,4 @@ helm plugin remove <plugin>... ...@@ -24,4 +24,4 @@ helm plugin remove <plugin>...
### SEE ALSO ### SEE ALSO
* [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -24,4 +24,4 @@ helm plugin update <plugin>... ...@@ -24,4 +24,4 @@ helm plugin update <plugin>...
### SEE ALSO ### SEE ALSO
* [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins
###### Auto generated by spf13/cobra on 6-May-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -31,4 +31,4 @@ Example usage: ...@@ -31,4 +31,4 @@ Example usage:
* [helm repo remove](helm_repo_remove.md) - remove a chart repository * [helm repo remove](helm_repo_remove.md) - remove a chart repository
* [helm repo update](helm_repo_update.md) - update information on available charts in the chart repositories * [helm repo update](helm_repo_update.md) - update information on available charts in the chart repositories
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -33,4 +33,4 @@ helm repo add [flags] [NAME] [URL] ...@@ -33,4 +33,4 @@ helm repo add [flags] [NAME] [URL]
### SEE ALSO ### SEE ALSO
* [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -40,4 +40,4 @@ helm repo index [flags] [DIR] ...@@ -40,4 +40,4 @@ helm repo index [flags] [DIR]
### SEE ALSO ### SEE ALSO
* [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -24,4 +24,4 @@ helm repo list [flags] ...@@ -24,4 +24,4 @@ helm repo list [flags]
### SEE ALSO ### SEE ALSO
* [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -24,4 +24,4 @@ helm repo remove [flags] [NAME] ...@@ -24,4 +24,4 @@ helm repo remove [flags] [NAME]
### SEE ALSO ### SEE ALSO
* [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -30,4 +30,4 @@ helm repo update ...@@ -30,4 +30,4 @@ helm repo update
### SEE ALSO ### SEE ALSO
* [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories
###### Auto generated by spf13/cobra on 16-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -40,4 +40,4 @@ helm reset ...@@ -40,4 +40,4 @@ helm reset
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -45,4 +45,4 @@ helm rollback [flags] [RELEASE] [REVISION] ...@@ -45,4 +45,4 @@ helm rollback [flags] [RELEASE] [REVISION]
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -37,4 +37,4 @@ helm search [keyword] ...@@ -37,4 +37,4 @@ helm search [keyword]
### SEE ALSO ### SEE ALSO
* [helm](helm.md) - The Helm package manager for Kubernetes. * [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 18-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -45,4 +45,4 @@ helm serve ...@@ -45,4 +45,4 @@ helm serve
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -44,4 +44,4 @@ helm status [flags] RELEASE_NAME ...@@ -44,4 +44,4 @@ helm status [flags] RELEASE_NAME
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -41,4 +41,4 @@ helm test [RELEASE] ...@@ -41,4 +41,4 @@ helm test [RELEASE]
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -38,6 +38,7 @@ helm upgrade [RELEASE] [CHART] ...@@ -38,6 +38,7 @@ helm upgrade [RELEASE] [CHART]
``` ```
--ca-file string verify certificates of HTTPS-enabled servers using this CA bundle --ca-file string verify certificates of HTTPS-enabled servers using this CA bundle
--cert-file string identify HTTPS client using this SSL certificate file --cert-file string identify HTTPS client using this SSL certificate file
--devel use development versions, too. Equivalent to version '>0.0.0-a'. If --version is set, this is ignored.
--dry-run simulate an upgrade --dry-run simulate an upgrade
-i, --install if a release by this name doesn't already exist, run an install -i, --install if a release by this name doesn't already exist, run an install
--key-file string identify HTTPS client using this SSL key file --key-file string identify HTTPS client using this SSL key file
...@@ -74,4 +75,4 @@ helm upgrade [RELEASE] [CHART] ...@@ -74,4 +75,4 @@ helm upgrade [RELEASE] [CHART]
### SEE ALSO ### SEE ALSO
* [helm](helm.md) - The Helm package manager for Kubernetes. * [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 24-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -39,4 +39,4 @@ helm verify [flags] PATH ...@@ -39,4 +39,4 @@ helm verify [flags] PATH
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
...@@ -53,4 +53,4 @@ helm version ...@@ -53,4 +53,4 @@ helm version
### SEE ALSO ### SEE ALSO
* [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-Apr-2017 ###### Auto generated by spf13/cobra on 17-May-2017
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -82,4 +82,4 @@ Environment: ...@@ -82,4 +82,4 @@ Environment:
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -71,4 +71,4 @@ $ source <(helm completion bash) ...@@ -71,4 +71,4 @@ $ source <(helm completion bash)
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -83,4 +83,4 @@ will be overwritten, but other files will be left alone. ...@@ -83,4 +83,4 @@ will be overwritten, but other files will be left alone.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -90,4 +90,4 @@ deleting them. ...@@ -90,4 +90,4 @@ deleting them.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -114,4 +114,4 @@ for this case. ...@@ -114,4 +114,4 @@ for this case.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -66,4 +66,4 @@ of 'helm dependency update'. ...@@ -66,4 +66,4 @@ of 'helm dependency update'.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -55,4 +55,4 @@ if it cannot find a requirements.yaml. ...@@ -55,4 +55,4 @@ if it cannot find a requirements.yaml.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -75,4 +75,4 @@ in the requirements.yaml file, but (b) at the wrong version. ...@@ -75,4 +75,4 @@ in the requirements.yaml file, but (b) at the wrong version.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -45,6 +45,10 @@ result in an error, and the chart will not be saved locally. ...@@ -45,6 +45,10 @@ result in an error, and the chart will not be saved locally.
\fB\-d\fP, \fB\-\-destination\fP="." \fB\-d\fP, \fB\-\-destination\fP="."
location to write the chart. If this and tardir are specified, tardir is appended to this location to write the chart. If this and tardir are specified, tardir is appended to this
.PP
\fB\-\-devel\fP[=false]
use development versions, too. Equivalent to version '>0.0.0\-a'. If \-\-version is set, this is ignored.
.PP .PP
\fB\-\-key\-file\fP="" \fB\-\-key\-file\fP=""
identify HTTPS client using this SSL key file identify HTTPS client using this SSL key file
...@@ -107,4 +111,4 @@ result in an error, and the chart will not be saved locally. ...@@ -107,4 +111,4 @@ result in an error, and the chart will not be saved locally.
.SH HISTORY .SH HISTORY
.PP .PP
24\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -86,4 +86,4 @@ chart, the supplied values, and the generated manifest file. ...@@ -86,4 +86,4 @@ chart, the supplied values, and the generated manifest file.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -56,4 +56,4 @@ Hooks are formatted in YAML and separated by the YAML '\-\-\-\\n' separator. ...@@ -56,4 +56,4 @@ Hooks are formatted in YAML and separated by the YAML '\-\-\-\\n' separator.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -58,4 +58,4 @@ charts, those resources will also be included in the manifest. ...@@ -58,4 +58,4 @@ charts, those resources will also be included in the manifest.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -57,4 +57,4 @@ This command downloads a values file for a given release. ...@@ -57,4 +57,4 @@ This command downloads a values file for a given release.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -94,4 +94,4 @@ REVISION UPDATED STATUS CHART DESCRIPTIO ...@@ -94,4 +94,4 @@ REVISION UPDATED STATUS CHART DESCRIPTIO
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -48,4 +48,4 @@ any helm configuration files live. ...@@ -48,4 +48,4 @@ any helm configuration files live.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -132,4 +132,4 @@ To dump a manifest containing the Tiller deployment YAML, combine the ...@@ -132,4 +132,4 @@ To dump a manifest containing the Tiller deployment YAML, combine the
.SH HISTORY .SH HISTORY
.PP .PP
1\-May\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -81,4 +81,4 @@ Inspect prints the contents of the Chart.yaml file and the values.yaml file. ...@@ -81,4 +81,4 @@ Inspect prints the contents of the Chart.yaml file and the values.yaml file.
.SH HISTORY .SH HISTORY
.PP .PP
24\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -78,4 +78,4 @@ of the Charts.yaml file ...@@ -78,4 +78,4 @@ of the Charts.yaml file
.SH HISTORY .SH HISTORY
.PP .PP
24\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -78,4 +78,4 @@ of the values.yaml file ...@@ -78,4 +78,4 @@ of the values.yaml file
.SH HISTORY .SH HISTORY
.PP .PP
24\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -122,6 +122,10 @@ charts in a repository, use 'helm search'. ...@@ -122,6 +122,10 @@ charts in a repository, use 'helm search'.
\fB\-\-cert\-file\fP="" \fB\-\-cert\-file\fP=""
identify HTTPS client using this SSL certificate file identify HTTPS client using this SSL certificate file
.PP
\fB\-\-devel\fP[=false]
use development versions, too. Equivalent to version '>0.0.0\-a'. If \-\-version is set, this is ignored.
.PP .PP
\fB\-\-dry\-run\fP[=false] \fB\-\-dry\-run\fP[=false]
simulate an install simulate an install
...@@ -232,4 +236,4 @@ charts in a repository, use 'helm search'. ...@@ -232,4 +236,4 @@ charts in a repository, use 'helm search'.
.SH HISTORY .SH HISTORY
.PP .PP
24\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -59,4 +59,4 @@ or recommendation, it will emit [WARNING] messages. ...@@ -59,4 +59,4 @@ or recommendation, it will emit [WARNING] messages.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -148,4 +148,4 @@ flag with the '\-\-offset' flag allows you to page through results. ...@@ -148,4 +148,4 @@ flag with the '\-\-offset' flag allows you to page through results.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -82,4 +82,4 @@ Versioned chart archives are used by Helm package repositories. ...@@ -82,4 +82,4 @@ Versioned chart archives are used by Helm package repositories.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
...@@ -47,4 +47,4 @@ Manage client\-side Helm plugins. ...@@ -47,4 +47,4 @@ Manage client\-side Helm plugins.
.SH HISTORY .SH HISTORY
.PP .PP
6\-May\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -53,4 +53,4 @@ install one or more Helm plugins ...@@ -53,4 +53,4 @@ install one or more Helm plugins
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -47,4 +47,4 @@ list installed Helm plugins ...@@ -47,4 +47,4 @@ list installed Helm plugins
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -47,4 +47,4 @@ remove one or more Helm plugins ...@@ -47,4 +47,4 @@ remove one or more Helm plugins
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
...@@ -47,4 +47,4 @@ update one or more Helm plugins ...@@ -47,4 +47,4 @@ update one or more Helm plugins
.SH HISTORY .SH HISTORY
.PP .PP
6\-May\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -52,4 +52,4 @@ Example usage: ...@@ -52,4 +52,4 @@ Example usage:
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -65,4 +65,4 @@ add a chart repository ...@@ -65,4 +65,4 @@ add a chart repository
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -66,4 +66,4 @@ into the existing index, with local charts taking priority over existing charts. ...@@ -66,4 +66,4 @@ into the existing index, with local charts taking priority over existing charts.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -47,4 +47,4 @@ list chart repositories ...@@ -47,4 +47,4 @@ list chart repositories
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -47,4 +47,4 @@ remove a chart repository ...@@ -47,4 +47,4 @@ remove a chart repository
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -52,4 +52,4 @@ future releases. ...@@ -52,4 +52,4 @@ future releases.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -79,4 +79,4 @@ $HELM\_HOME (default \~/.helm/) ...@@ -79,4 +79,4 @@ $HELM\_HOME (default \~/.helm/)
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -94,4 +94,4 @@ second is a revision (version) number. To see revision numbers, run ...@@ -94,4 +94,4 @@ second is a revision (version) number. To see revision numbers, run
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -65,4 +65,4 @@ Repositories are managed with 'helm repo' commands. ...@@ -65,4 +65,4 @@ Repositories are managed with 'helm repo' commands.
.SH HISTORY .SH HISTORY
.PP .PP
18\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -76,4 +76,4 @@ for more information on hosting chart repositories in a production setting. ...@@ -76,4 +76,4 @@ for more information on hosting chart repositories in a production setting.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -80,4 +80,4 @@ The status consists of: ...@@ -80,4 +80,4 @@ The status consists of:
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -81,4 +81,4 @@ The tests to be run are defined in the chart that was installed. ...@@ -81,4 +81,4 @@ The tests to be run are defined in the chart that was installed.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -65,6 +65,10 @@ $ helm upgrade \-\-set foo=bar \-\-set foo=newbar redis ./redis ...@@ -65,6 +65,10 @@ $ helm upgrade \-\-set foo=bar \-\-set foo=newbar redis ./redis
\fB\-\-cert\-file\fP="" \fB\-\-cert\-file\fP=""
identify HTTPS client using this SSL certificate file identify HTTPS client using this SSL certificate file
.PP
\fB\-\-devel\fP[=false]
use development versions, too. Equivalent to version '>0.0.0\-a'. If \-\-version is set, this is ignored.
.PP .PP
\fB\-\-dry\-run\fP[=false] \fB\-\-dry\-run\fP[=false]
simulate an upgrade simulate an upgrade
...@@ -179,4 +183,4 @@ $ helm upgrade \-\-set foo=bar \-\-set foo=newbar redis ./redis ...@@ -179,4 +183,4 @@ $ helm upgrade \-\-set foo=bar \-\-set foo=newbar redis ./redis
.SH HISTORY .SH HISTORY
.PP .PP
24\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -62,4 +62,4 @@ the 'helm package \-\-sign' command. ...@@ -62,4 +62,4 @@ the 'helm package \-\-sign' command.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
.TH "HELM" "1" "Apr 2017" "Auto generated by spf13/cobra" "" .TH "HELM" "1" "May 2017" "Auto generated by spf13/cobra" ""
.nh .nh
.ad l .ad l
...@@ -100,4 +100,4 @@ use '\-\-server'. ...@@ -100,4 +100,4 @@ use '\-\-server'.
.SH HISTORY .SH HISTORY
.PP .PP
16\-Apr\-2017 Auto generated by spf13/cobra 17\-May\-2017 Auto generated by spf13/cobra
...@@ -202,7 +202,7 @@ func (c *ChartDownloader) ResolveChartVersion(ref, version string) (*url.URL, ge ...@@ -202,7 +202,7 @@ func (c *ChartDownloader) ResolveChartVersion(ref, version string) (*url.URL, ge
cv, err := i.Get(chartName, version) cv, err := i.Get(chartName, version)
if err != nil { if err != nil {
return u, r.Client, fmt.Errorf("chart %q not found in %s index. (try 'helm repo update'). %s", chartName, r.Config.Name, err) return u, r.Client, fmt.Errorf("chart %q matching %s not found in %s index. (try 'helm repo update'). %s", chartName, version, r.Config.Name, err)
} }
if len(cv.URLs) == 0 { if len(cv.URLs) == 0 {
......
...@@ -431,6 +431,8 @@ _helm_fetch() ...@@ -431,6 +431,8 @@ _helm_fetch()
flags+=("--destination=") flags+=("--destination=")
two_word_flags+=("-d") two_word_flags+=("-d")
local_nonpersistent_flags+=("--destination=") local_nonpersistent_flags+=("--destination=")
flags+=("--devel")
local_nonpersistent_flags+=("--devel")
flags+=("--key-file=") flags+=("--key-file=")
local_nonpersistent_flags+=("--key-file=") local_nonpersistent_flags+=("--key-file=")
flags+=("--keyring=") flags+=("--keyring=")
...@@ -805,6 +807,8 @@ _helm_install() ...@@ -805,6 +807,8 @@ _helm_install()
local_nonpersistent_flags+=("--ca-file=") local_nonpersistent_flags+=("--ca-file=")
flags+=("--cert-file=") flags+=("--cert-file=")
local_nonpersistent_flags+=("--cert-file=") local_nonpersistent_flags+=("--cert-file=")
flags+=("--devel")
local_nonpersistent_flags+=("--devel")
flags+=("--dry-run") flags+=("--dry-run")
local_nonpersistent_flags+=("--dry-run") local_nonpersistent_flags+=("--dry-run")
flags+=("--key-file=") flags+=("--key-file=")
...@@ -1463,6 +1467,8 @@ _helm_upgrade() ...@@ -1463,6 +1467,8 @@ _helm_upgrade()
local_nonpersistent_flags+=("--ca-file=") local_nonpersistent_flags+=("--ca-file=")
flags+=("--cert-file=") flags+=("--cert-file=")
local_nonpersistent_flags+=("--cert-file=") local_nonpersistent_flags+=("--cert-file=")
flags+=("--devel")
local_nonpersistent_flags+=("--devel")
flags+=("--disable-hooks") flags+=("--disable-hooks")
local_nonpersistent_flags+=("--disable-hooks") local_nonpersistent_flags+=("--disable-hooks")
flags+=("--dry-run") flags+=("--dry-run")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment