File tree Expand file tree Collapse file tree 5 files changed +49
-3
lines changed
Expand file tree Collapse file tree 5 files changed +49
-3
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ maintainers:
88
99type : application
1010
11- version : 2.4.6 -1
11+ version : 2.5.0 -1
1212
13- appVersion : " 5.26.4 "
13+ appVersion : " 5.29.1 "
1414
1515dependencies :
1616 - name : mariadb
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ autoscaling:
6262
6363heapDumpExporter :
6464 enabled : true
65+ persistence :
66+ enabled : true
6567 s3 :
6668 bucket : s3://test-relution-io
6769 awsAccessKeyId : relution
Original file line number Diff line number Diff line change 1+ ingress :
2+ enabled : true
3+ hosts :
4+ - host : ' {{ required "relution.config.relution.server.externalURL is required!" .Values.relution.config.relution.server.externalURL | replace "https://" "" }}'
5+ paths :
6+ - path : /
7+ pathType : ImplementationSpecific
8+
9+ relution :
10+ config :
11+ relution :
12+ server :
13+ externalURL : https://test.relution.io
14+ database :
15+ type : mariadb
16+ url : jdbc:mariadb://mariadb:3306/relution
17+ username : relution
18+ password : relution
19+
20+ mariadb :
21+ enabled : true
22+ fullnameOverride : mariadb
23+ auth :
24+ rootPassword : relution
25+ username : relution
26+ password : relution
27+ database : relution
28+
29+ heapDumpExporter :
30+ enabled : true
31+ persistence :
32+ enabled : false
33+ s3 :
34+ bucket : s3://test-relution-io
35+ awsAccessKeyId : relution
36+ awsSecretAccessKey : relution
Original file line number Diff line number Diff line change 1212 {{- if not .Values.autoscaling.enabled }}
1313 replicas : {{ .Values.replicaCount }}
1414 {{- end }}
15- {{- if .Values.heapDumpExporter.enabled }}
15+ {{- if and .Values.heapDumpExporter.enabled .Values.heapDumpExporter.persistence .enabled }}
1616 strategy :
1717 type : Recreate
1818 {{- end }}
5454 hostAliases :
5555 {{- toYaml .Values.hostAliases | nindent 8 }}
5656 {{- end }}
57+ terminationGracePeriodSeconds : {{ .Values.terminationGracePeriodSeconds }}
5758 {{- if .Values.heapDumpExporter.enabled }}
5859 initContainers :
5960 - name : volume-permission
@@ -185,8 +186,12 @@ spec:
185186 {{- end }}
186187 {{- if .Values.heapDumpExporter.enabled }}
187188 - name : heap-dumps
189+ {{- if .Values.heapDumpExporter.persistence.enabled }}
188190 persistentVolumeClaim :
189191 claimName : {{ include "relution.fullname" . }}-heap-dump-exporter
192+ {{- else }}
193+ emptyDir : {}
194+ {{- end }}
190195 {{- end }}
191196 {{- if .Values.additionalVolumes }}
192197 {{- toYaml .Values.additionalVolumes | nindent 8 }}
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ securityContext: {}
2323
2424hostAliases : []
2525
26+ terminationGracePeriodSeconds : 30
27+
2628service :
2729 type : ClusterIP
2830 port : 80
@@ -174,6 +176,7 @@ heapDumpExporter:
174176 awsAccessKeyId : " "
175177 awsSecretAccessKey : " "
176178 persistence :
179+ enabled : false
177180 size : 10Gi
178181 storageClass : " "
179182
You can’t perform that action at this time.
0 commit comments