26 lines
831 B
Go Template
26 lines
831 B
Go Template
---
|
|
bases:
|
|
- ./common/environments.yaml
|
|
---
|
|
helmfiles:
|
|
- path: ./helmfiles/base.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|
|
- path: ./helmfiles/system.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|
|
- path: ./helmfiles/platform.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|
|
- path: ./helmfiles/databases.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|
|
- path: ./helmfiles/applications.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|