Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.1 KB

README.md

File metadata and controls

41 lines (31 loc) · 1.1 KB

helm-get-values

Get a dependency's default values.yaml and append it to the consuming chart's values.yaml file to save time when working with helm dependencies.

  • Reduce errors by copying a dependency's default values in the proper yaml file structure
  • Quickly review default configurations, override and keep portions that are needed and delete what is not

Installing

Requirements

  • python 2.7+
  • git
  • helm

Run in your favorite terminal (Run as Administrator in Windows)

helm plugin install http://github.com/android2221/helm-get-values 

Usage

Command:

helm get-values <chartname>

Example:

helm get-values stable/wordpress
  • Open values.yaml, edit and remove things you don't need to override the dependency's default values

Uninstalling

Run in your favorite terminal (Run as Administrator in Windows)

helm plugin remove get-values