This repository was archived by the owner on Mar 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 1.2 .0
18+ version : 1.3 .0
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 4848 volumeMounts :
4949 - mountPath : /srv/app/pvc
5050 name : {{ .Release.Name }}-logs
51+ livenessProbe :
52+ initialDelaySeconds : 30
53+ periodSeconds : 60
54+ httpGet :
55+ path : /probe?probeType=liveness
56+ port : {{ .Values.server.web.service.port }}
5157 dnsPolicy : ClusterFirst
5258 restartPolicy : Always
5359 schedulerName : default-scheduler
Original file line number Diff line number Diff line change 4040 volumeMounts :
4141 - name : {{ .Release.Name }}-{{ .Values.server.mariadb.service.name }}
4242 mountPath : /var/lib/mysql
43+ # readinessProbe:
44+ # initialDelaySeconds: 20
45+ # periodSeconds: 60
46+ # exec:
47+ # command:
48+ # - "/bin/sh"
49+ # - "-c"
50+ # - "mysqladmin status -u root -p {{ .Values.server.mariadb.rootPassword }}"
4351 volumes :
4452 - name : {{ .Release.Name }}-{{ .Values.server.mariadb.service.name }}
4553 persistentVolumeClaim :
Original file line number Diff line number Diff line change 11apiVersion : 2.1
22
3+ # volumes var for deno
34deno :
45 pv :
56 name : deno-pv
1011 name : deno-pvc
1112 size : 1Gi
1213 volumeName : deno-pv
13-
14+ # deno var for mariadb
1415maria :
1516 pv :
1617 name : maria-pv
2223 size : 1Gi
2324 volumeName : maria-pv
2425
26+ # var for servers (web and mariadb)
2527server :
2628 web :
2729 volumeMount :
You can’t perform that action at this time.
0 commit comments