mirror of
https://github.com/helm/helm.git
synced 2026-02-18 18:29:23 -05:00
This feature adds the ability to selectively control the loading of charts using entries in top chart's values. When 'helm install --set tags.mytag=true', charts with that tag will be enabled unless disabled in parent by condition. When 'helm install --set mychart.enabled=true', charts with that yaml path specified will be enabled. Closes #1837
7 lines
79 B
YAML
7 lines
79 B
YAML
# parent/values.yaml
|
|
|
|
# switch-like
|
|
tags:
|
|
front-end: true
|
|
back-end: false
|
|
|