mirror of
https://github.com/helm/helm.git
synced 2026-05-04 17:26:40 -04: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
18 lines
No EOL
403 B
Markdown
18 lines
No EOL
403 B
Markdown
## Subpop
|
|
|
|
This chart is for testing the processing of enabled/disabled charts
|
|
via conditions and tags.
|
|
|
|
Currently there are three levels:
|
|
|
|
````
|
|
parent
|
|
-1 tags: front-end, subchart1
|
|
--A tags: front-end, subchartA
|
|
--B tags: front-end, subchartB
|
|
-2 tags: back-end, subchart2
|
|
--B tags: back-end, subchartB
|
|
--C tags: back-end, subchartC
|
|
````
|
|
|
|
Tags and conditions are currently in requirements.yaml files. |