Helm install: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 25: Line 25:
[[Helm_Concepts#Chart_Configuration|Default configuration]] - or just some values - can be overridden with:
[[Helm_Concepts#Chart_Configuration|Default configuration]] - or just some values - can be overridden with:


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

Revision as of 16:50, 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>