github.com/felipejfc/helm@v2.1.2+incompatible/docs/helm/helm_install.md (about)

     1  ## helm install
     2  
     3  install a chart archive
     4  
     5  ### Synopsis
     6  
     7  
     8  
     9  This command installs a chart archive.
    10  
    11  The install argument must be either a relative path to a chart directory or the
    12  name of a chart in the current working directory.
    13  
    14  To override values in a chart, use either the '--values' flag and pass in a file
    15  or use the '--set' flag and pass configuration from the command line.
    16  
    17  	$ helm install -f myvalues.yaml ./redis
    18  
    19  or
    20  
    21  	$ helm install --set name=prod ./redis
    22  
    23  To check the generated manifests of a release without installing the chart,
    24  the '--debug' and '--dry-run' flags can be combined. This will still require a
    25  round-trip to the Tiller server.
    26  
    27  If --verify is set, the chart MUST have a provenance file, and the provenenace
    28  fall MUST pass all verification steps.
    29  
    30  There are four different ways you can express the chart you want to install:
    31  
    32  1. By chart reference: helm install stable/mariadb
    33  2. By path to a packaged chart: helm install ./nginx-1.2.3.tgz
    34  3. By path to an unpacked chart directory: helm install ./nginx
    35  4. By absolute URL: helm install https://example.com/charts/nginx-1.2.3.tgz
    36  
    37  CHART REFERENCES
    38  
    39  A chart reference is a convenient way of reference a chart in a chart repository.
    40  
    41  When you use a chart reference ('stable/mariadb'), Helm will look in the local
    42  configuration for a chart repository named 'stable', and will then look for a
    43  chart in that repository whose name is 'mariadb'. It will install the latest
    44  version of that chart unless you also supply a version number with the
    45  '--version' flag.
    46  
    47  To see the list of chart repositories, use 'helm repo list'. To search for
    48  charts in a repository, use 'helm search'.
    49  
    50  
    51  ```
    52  helm install [CHART]
    53  ```
    54  
    55  ### Options
    56  
    57  ```
    58        --dry-run                simulate an install
    59        --keyring string         location of public keys used for verification (default "/Users/mattbutcher/.gnupg/pubring.gpg")
    60    -n, --name string            release name. If unspecified, it will autogenerate one for you
    61        --name-template string   specify template used to name the release
    62        --namespace string       namespace to install the release into
    63        --no-hooks               prevent hooks from running during install
    64        --replace                re-use the given name, even if that name is already used. This is unsafe in production
    65        --set value              set values on the command line. Separate values with commas: key1=val1,key2=val2 (default null
    66  )
    67    -f, --values string          specify values in a YAML file
    68        --verify                 verify the package before installing it
    69        --version string         specify the exact chart version to install. If this is not specified, the latest version is installed
    70  ```
    71  
    72  ### Options inherited from parent commands
    73  
    74  ```
    75        --debug                 enable verbose output
    76        --home string           location of your Helm config. Overrides $HELM_HOME (default "/Users/mattbutcher/Code/helm_home")
    77        --host string           address of tiller. Overrides $HELM_HOST
    78        --kube-context string   name of the kubeconfig context to use
    79  ```
    80  
    81  ### SEE ALSO
    82  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    83  
    84  ###### Auto generated by spf13/cobra on 1-Nov-2016