We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f26a93e commit 2c6b7e7Copy full SHA for 2c6b7e7
1 file changed
charts/rocketadmin/templates/deployment.yaml
@@ -29,10 +29,16 @@ spec:
29
fsGroup: 999
30
{{- toYaml .Values.podSecurityContext | nindent 8 }}
31
{{- if .Values.pglite.enabled }}
32
+ strategy:
33
+ type: Recreate
34
volumes:
35
- name: rocketadmin-data
36
persistentVolumeClaim:
37
claimName: rocketadmin-data-pvc
38
+ - name: tmp
39
+ emptyDir:
40
+ medium: Memory
41
+ sizeLimit: 64Mi
42
{{- end }}
43
containers:
44
- name: {{ .Chart.Name }}
@@ -51,6 +57,9 @@ spec:
51
57
volumeMounts:
52
58
53
59
mountPath: /app/backend/pglite-storage
60
+ - mountPath: /tmp
61
+ name: tmp
62
+ subPath: tmp
54
63
55
64
livenessProbe:
56
65
httpGet:
0 commit comments