helmfile.yaml
2.47 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
environments:
default:
values:
- namespace: registry
namePrefix: "test-"
restoreFromEmpty:
enabled: true
registry:
jsonPatches: []
strategicMergePatches: []
service:
registry:
nodePort: 32123
images:
debian: "debian:bullseye-20211220"
registry: "registry:2"
---
releases:
- name: {{ .Values.namePrefix }}registry
namespace: {{ .Values.namespace }}
chart: .
values:
- set-common-values.yaml.gotmpl
jsonPatches:
- target:
kind: Service
name: {{ .Values.namePrefix }}registry
namespace: {{ .Values.namespace }}
version: v1
patch:
- op: replace
path: /spec/selector/app
value: {{ .Values.namePrefix }}registry
- op: replace
path: /spec/ports/0/nodePort
value: {{ .Values.registry.service.registry.nodePort }}
{{- if not (empty (.Values.registry.jsonPatches)) }}
{{- .Values.registry.jsonPatches | toYaml | indent 6 }}
{{- end }}
strategicMergePatches:
- apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Values.namePrefix }}registry
namespace: {{ .Values.namespace }}
spec:
selector:
matchLabels:
app: {{ .Values.namePrefix }}registry
template:
metadata:
labels:
app: {{ .Values.namePrefix }}registry
spec:
volumes:
- name: registry-data
persistentVolumeClaim:
claimName: {{ .Values.namePrefix }}registry-data
- name: registry-config
configMap:
name: {{ .Values.namePrefix }}registry-config
- name: registry-secret
secret:
secretName: {{ .Values.namePrefix }}registry-secret
- apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Values.namePrefix }}registry-config
namespace: {{ .Values.namespace }}
data:
- apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.namePrefix }}registry-secret
namespace: {{ .Values.namespace }}
stringData:
{{- if not (empty (.Values.registry.strategicMergePatches)) }}
{{- .Values.registry.strategicMergePatches | toYaml | indent 6 }}
{{- end }}