Helm install: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 26: Line 26:


  helm install -f|--values <''configuration-overrides-file''.yaml> <''chart name''>
  helm install -f|--values <''configuration-overrides-file''.yaml> <''chart name''>
The -f|--values flag can be specified multiple time on the command line, and the rightmost value will take precedence.

Revision as of 16:51, 28 August 2019

External

Internal

Overview

Install a chart archive, creating a release in the process.

helm install <chart-name>

helm install stable/mysql

Specifying a Release Name

helm install --name <release-name> ...

Overriding Default Configuration

Default configuration - or just some values - can be overridden with:

helm install -f|--values <configuration-overrides-file.yaml> <chart name>

The -f|--values flag can be specified multiple time on the command line, and the rightmost value will take precedence.