-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelmfile.yaml.gotmpl
More file actions
90 lines (88 loc) · 2.37 KB
/
helmfile.yaml.gotmpl
File metadata and controls
90 lines (88 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
environments:
default:
missingFileHandler: Warn
values:
- environments/default/config.yaml
- environments/override.yaml
dev:
missingFileHandler: Warn
values:
- environments/default/config.yaml
- environments/dev/config.yaml
- environments/override.yaml
ci:
missingFileHandler: Warn
values:
- environments/default/config.yaml
- environments/ci/config.yaml.gotmpl
- environments/override.yaml
dev-op-standalone:
missingFileHandler: Warn
values:
- environments/default/config.yaml
- environments/dev-op-standalone/config.yaml
- environments/override.yaml
---
repositories:
# Issues:
# - https://github.com/opf/helm-charts/issues/215
# - https://github.com/opf/helm-charts/issues/264
# NOTE: Remove local openproject and use the following once the issues are resolved:
# - name: openproject
# url: https://charts.openproject.org
- name: nextcloud
url: https://nextcloud.github.io/helm
- name: bitnami
url: https://charts.bitnami.com/bitnami
- name: cert-manager
url: https://charts.jetstack.io
namespace: opnc-integration
releases:
- name: cert-manager
chart: cert-manager/cert-manager
version: ~1.20.0
values:
- crds:
enabled: true
- name: opnc-integration
chart: ./charts/opnc-integration
values:
- values/integration.gotmpl
- values/op-env.gotmpl
needs:
- cert-manager
- name: openproject
chart: ./charts/openproject
values:
- values/op-values.gotmpl
- values/op-env.gotmpl
needs:
- opnc-integration
# Issues:
# - https://github.com/opf/helm-charts/issues/215
# - https://github.com/opf/helm-charts/issues/264
# NOTE: Remove local openproject and use the following once the issues are resolved:
# - name: openproject
# chart: openproject/openproject
# version: ~10.1.2
# values:
# - values/op-values.gotmpl
# needs:
# - opnc-integration
- name: nextcloud
chart: nextcloud/nextcloud
version: ~9.0.0
installed: {{ not .Values.openproject.standalone }}
values:
- values/nc-values.gotmpl
needs:
- opnc-integration
- name: keycloak
chart: bitnami/keycloak
version: ~24.7.5
installed: {{ not .Values.openproject.standalone }}
values:
- values/kc-values.gotmpl
needs:
- opnc-integration