We have 2 helm-charts:
- helm-chart-A which deploys:
- A-config-map
- A-deployment
- A-secret
- helm-chart-B which deploys:
- B-config-map
- B-statefulset
- B-secret
Is it possible to create an empty super hart which include the above as dependencies and deploy them?
e.g
helm-chart-C:
- Chart.yaml:
- dependencies:
- helm-chart-A
- helm-chart-B
- dependencies:
--> Output:
- Deploy helm-chart-A and helm-chart-B
In case yes, is it possible to specify as well the "helm.sh/hook-weight"? e.g. helm-chart-B has to be deployed before A
I use an example 2 charts but we have 7/8 charts that we want to deploy with an "helm super chart"