github.com/koderover/helm@v2.17.0+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  Retrieve a package from a package repository, and download it locally.
     9  
    10  This is useful for fetching packages to inspect, modify, or repackage. It can
    11  also be used to perform cryptographic verification of a chart without installing
    12  the chart.
    13  
    14  There are options for unpacking the chart after download. This will create a
    15  directory for the chart and uncompress into that directory.
    16  
    17  If the --verify flag is specified, the requested chart MUST have a provenance
    18  file, and MUST pass the verification process. Failure in any part of this will
    19  result in an error, and the chart will not be saved locally.
    20  
    21  
    22  ```
    23  helm fetch [flags] [chart URL | repo/chartname] [...]
    24  ```
    25  
    26  ### Options
    27  
    28  ```
    29        --ca-file string       Verify certificates of HTTPS-enabled servers using this CA bundle
    30        --cert-file string     Identify HTTPS client using this SSL certificate file
    31    -d, --destination string   Location to write the chart. If this and tardir are specified, tardir is appended to this (default ".")
    32        --devel                Use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.
    33    -h, --help                 help for fetch
    34        --key-file string      Identify HTTPS client using this SSL key file
    35        --keyring string       Keyring containing public keys (default "~/.gnupg/pubring.gpg")
    36        --password string      Chart repository password
    37        --prov                 Fetch the provenance file, but don't perform verification
    38        --repo string          Chart repository url where to locate the requested chart
    39        --untar                If set to true, will untar the chart after downloading it
    40        --untardir string      If untar is specified, this flag specifies the name of the directory into which the chart is expanded (default ".")
    41        --username string      Chart repository username
    42        --verify               Verify the package against its signature
    43        --version string       Specific version of a chart. Without this, the latest version is fetched
    44  ```
    45  
    46  ### Options inherited from parent commands
    47  
    48  ```
    49        --debug                           Enable verbose output
    50        --home string                     Location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    51        --host string                     Address of Tiller. Overrides $HELM_HOST
    52        --kube-context string             Name of the kubeconfig context to use
    53        --kubeconfig string               Absolute path of the kubeconfig file to be used
    54        --tiller-connection-timeout int   The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
    55        --tiller-namespace string         Namespace of Tiller (default "kube-system")
    56  ```
    57  
    58  ### SEE ALSO
    59  
    60  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    61  
    62  ###### Auto generated by spf13/cobra on 16-May-2019