This command installs a chart archive.

    The install argument must be a chart reference, a path to a packaged chart,a path to an unpacked chart directory or a URL.

    To override values in a chart, use either the ‘–values’ flag and pass in a fileor use the ‘–set’ flag and pass configuration from the command line. To force stringvalues in ‘–set’, use ‘–set-string’ instead. In case a value is large and thereforeyou want not to use neither ‘–values’ nor ‘–set’, use ‘–set-file’ to read thesingle large value from file.

    or

    or$ helm install –set-file multiline-text=path/to/textfile

    You can specify the ‘–values’/‘-f’ flag multiple times. The priority will be given to thelast (right-most) file specified. For example, if both myvalues.yaml and override.yamlcontained a key called ‘Test’, the value set in override.yaml would take precedence:

      You can specify the ‘–set’ flag multiple times. The priority will be given to thelast (right-most) set specified. For example, if both ‘bar’ and ‘newbar’ values areset for a key called ‘foo’, the ‘newbar’ value would take precedence:

      To check the generated manifests of a release without installing the chart,the ‘–debug’ and ‘–dry-run’ flags can be combined. This will still require around-trip to the Tiller server.

      There are five different ways you can express the chart you want to install:

      • By chart reference: helm install stable/mariadb
      • By path to a packaged chart: helm install ./nginx-1.2.3.tgz
      • By path to an unpacked chart directory: helm install ./nginx
      • By absolute URL: helm install
      • By chart reference and repo url: helm install –repo https://example.com/charts/ nginxCHART REFERENCES

      A chart reference is a convenient way of reference a chart in a chart repository.

      When you use a chart reference with a repo prefix (‘stable/mariadb’), Helm will look in the localconfiguration for a chart repository named ‘stable’, and will then look for achart in that repository whose name is ‘mariadb’. It will install the latestversion of that chart unless you also supply a version number with the‘–version’ flag.

      To see the list of chart repositories, use ‘helm repo list’. To search forcharts in a repository, use ‘helm search’.

      1. helm install [CHART] [flags]
      1. --home string Location of your Helm config. Overrides $HELM-HOME (default "~/.helm")
      2. --host string Address of Tiller. Overrides $HELM-HOST
      3. --kubeconfig string Absolute path of the kubeconfig file to be used
      4. --tiller-connection-timeout int The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
      Auto generated by spf13/cobra on 24-Sep-2019