mirror of
https://github.com/helm/helm.git
synced 2026-03-02 13:32:40 -05:00
This change moves the code, updates the import locations, and adds a doc.go file to document what the v2 package is for. This is part of HIP 20 for v3 charts Signed-off-by: Matt Farina <matt.farina@suse.com>
22 lines
No EOL
432 B
YAML
22 lines
No EOL
432 B
YAML
apiVersion: v2
|
|
name: parent-chart
|
|
version: v0.1.0
|
|
appVersion: v0.1.0
|
|
dependencies:
|
|
- name: dev
|
|
repository: "file://envs/dev"
|
|
version: ">= 0.0.1"
|
|
condition: dev.enabled,global.dev.enabled
|
|
tags:
|
|
- dev
|
|
import-values:
|
|
- data
|
|
|
|
- name: prod
|
|
repository: "file://envs/prod"
|
|
version: ">= 0.0.1"
|
|
condition: prod.enabled,global.prod.enabled
|
|
tags:
|
|
- prod
|
|
import-values:
|
|
- data |