github.com/felipejfc/helm@v2.1.2+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 "/Users/mattbutcher/.gnupg/pubring.gpg")
    32        --untar                if set to true, will untar the chart after downloading it
    33        --untardir string      if untar is specified, this flag specifies the name of the directory into which the chart is expanded (default ".")
    34        --verify               verify the package against its signature
    35        --version string       specific version of a chart. Without this, the latest version is fetched
    36  ```
    37  
    38  ### Options inherited from parent commands
    39  
    40  ```
    41        --debug                 enable verbose output
    42        --home string           location of your Helm config. Overrides $HELM_HOME (default "/Users/mattbutcher/Code/helm_home")
    43        --host string           address of tiller. Overrides $HELM_HOST
    44        --kube-context string   name of the kubeconfig context to use
    45  ```
    46  
    47  ### SEE ALSO
    48  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    49  
    50  ###### Auto generated by spf13/cobra on 1-Nov-2016