Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/rocketadmin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: rocketadmin
description: Rocketadmin is a web-based application for creating admin panels for your projects.
type: application
icon: https://avatars.githubusercontent.com/u/84132223
version: 1.0.3
version: 1.0.4
home: https://rocketadmin.com
sources:
- https://github.com/rocket-admin/rocketadmin
Expand Down
9 changes: 9 additions & 0 deletions charts/rocketadmin/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@ spec:
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
{{- if .Values.pglite.enabled }}
strategy:
type: Recreate
volumes:
- name: rocketadmin-data
persistentVolumeClaim:
claimName: rocketadmin-data-pvc
- name: tmp
emptyDir:
medium: Memory
sizeLimit: 64Mi
{{- end }}
containers:
- name: {{ .Chart.Name }}
Expand All @@ -50,6 +56,9 @@ spec:
volumeMounts:
- name: rocketadmin-data
mountPath: /app/backend/pglite-storage
- mountPath: /tmp
name: tmp
subPath: tmp
{{- end }}
livenessProbe:
httpGet:
Expand Down
Loading