30 lines
1012 B
Go Template
30 lines
1012 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/monitoring.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|
|
- path: ./helmfiles/{{ .Environment.Name }}-applications.yaml
|
|
values:
|
|
- kubeContext: "{{ .Environment.KubeContext }}"
|
|
- {{ toYaml .Environment.Values | nindent 8 }}
|