github.com/cloudposse/helm@v2.2.3+incompatible/docs/helm/helm_fetch.md (about)

     1  ## helm fetch
     2  
     3  download a chart from a repository and (optionally) unpack it in local directory
     4  
     5  ### Synopsis
     6  
     7  
     8  
     9  Retrieve a package from a package repository, and download it locally.
    10  
    11  This is useful for fetching packages to inspect, modify, or repackage. It can
    12  also be used to perform cryptographic verification of a chart without installing
    13  the chart.
    14  
    15  There are options for unpacking the chart after download. This will create a
    16  directory for the chart and uncomparess into that directory.
    17  
    18  If the --verify flag is specified, the requested chart MUST have a provenance
    19  file, and MUST pass the verification process. Failure in any part of this will
    20  result in an error, and the chart will not be saved locally.
    21  
    22  
    23  ```
    24  helm fetch [flags] [chart URL | repo/chartname] [...]
    25  ```
    26  
    27  ### Options
    28  
    29  ```
    30    -d, --destination string   location to write the chart. If this and tardir are specified, tardir is appended to this (default ".")
    31        --keyring string       keyring containing public keys (default "~/.gnupg/pubring.gpg")
    32        --prov                 fetch the provenance file, but don't perform verification
    33        --untar                if set to true, will untar the chart after downloading it
    34        --untardir string      if untar is specified, this flag specifies the name of the directory into which the chart is expanded (default ".")
    35        --verify               verify the package against its signature
    36        --version string       specific version of a chart. Without this, the latest version is fetched
    37  ```
    38  
    39  ### Options inherited from parent commands
    40  
    41  ```
    42        --debug                     enable verbose output
    43        --home string               location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    44        --host string               address of tiller. Overrides $HELM_HOST
    45        --kube-context string       name of the kubeconfig context to use
    46        --tiller-namespace string   namespace of tiller (default "kube-system")
    47  ```
    48  
    49  ### SEE ALSO
    50  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    51  
    52  ###### Auto generated by spf13/cobra on 15-Jan-2017