mirror of
https://github.com/helm/helm.git
synced 2026-04-28 09:38:45 -04:00
Enable to use charts with dependencies that have conditions (e.g. in umbrella charts). Allow aliases for dependencies that have dependencies with conditions. Closes #3734 Signed-off-by: Christian Koeberl <christian.koeberl@gmail.com>
19 lines
413 B
YAML
19 lines
413 B
YAML
apiVersion: v1
|
|
description: A Helm chart for Kubernetes
|
|
name: subchart2
|
|
version: 0.1.0
|
|
dependencies:
|
|
- name: subchartb
|
|
repository: http://localhost:10191
|
|
version: 0.1.0
|
|
condition: subchartb.enabled
|
|
tags:
|
|
- back-end
|
|
- subchartb
|
|
- name: subchartc
|
|
repository: http://localhost:10191
|
|
version: 0.1.0
|
|
condition: subchartc.enabled
|
|
tags:
|
|
- back-end
|
|
- subchartc
|