Nested subchart of Helm

9/21/2018

Can I make nested chart of Helm?

Subchart is defined in Helm Chart spec. e.g. Wordpress chart includes Nginx and MySQL subchart.

Can I define more deep nested chart? e.g. Wordpress chart includes HTTPd chart and the chart also includes Nginx, HAProxy and memcached subchart.

-- Ryota Hashimoto
helmfile
kubernetes
kubernetes-helm

1 Answer

9/21/2018

Yes, each chart can depend on charts them selves to create a tree like structure of dependencies.

PrimaryApplication |- Service1 |- httpd |- Database |- Service2 |- haproxy |- common

-- Bill Warner
Source: StackOverflow