mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-21 16:33:48 +01:00
feat: enable persistence in chart
This commit is contained in:
parent
5c405defa0
commit
4d9b8df5c6
@ -325,3 +325,8 @@ objectStorage:
|
||||
# Seriously. Do NOT fill out the above settings if you're self-hosting.
|
||||
# They're much better off being set from the control panel.
|
||||
{{- end }}
|
||||
|
||||
|
||||
{{- define "iceshrimp.datapvc" -}}
|
||||
{{- default (printf "%s-data-pvc" (include "iceshrimp.fullname" .) ) .Values.iceshrimp.localStorage.claimName }}
|
||||
{{- end }}
|
||||
|
@ -29,9 +29,16 @@ spec:
|
||||
securityContext:
|
||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||
volumes:
|
||||
- name: config-volume
|
||||
secret:
|
||||
secretName: {{ template "iceshrimp.fullname" . }}-config
|
||||
- name: config-volume
|
||||
secret:
|
||||
secretName: {{ template "iceshrimp.fullname" . }}-config
|
||||
- name: data-volume
|
||||
{{- if .Values.iceshrimp.localStorage.enabled }}
|
||||
persistentVolumeClaim:
|
||||
claimName: {{ include "iceshrimp.datapvc" . }}
|
||||
{{- else }}
|
||||
emptyDir:
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
securityContext:
|
||||
@ -41,13 +48,15 @@ spec:
|
||||
command:
|
||||
- yarn
|
||||
- run
|
||||
- migrateandstart
|
||||
- start
|
||||
env:
|
||||
- name: "NODE_ENV"
|
||||
value: "production"
|
||||
volumeMounts:
|
||||
- name: config-volume
|
||||
mountPath: /iceshrimp/.config
|
||||
- name: data-volume
|
||||
mountPath: /iceshrimp/files
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 3000
|
||||
|
@ -38,7 +38,7 @@ spec:
|
||||
command:
|
||||
- yarn
|
||||
- run
|
||||
- migrateandstart
|
||||
- migrate
|
||||
env:
|
||||
- name: "NODE_ENV"
|
||||
value: "production"
|
||||
|
23
chart/templates/pvc.yaml
Normal file
23
chart/templates/pvc.yaml
Normal file
@ -0,0 +1,23 @@
|
||||
{{- if .Values.iceshrimp.localStorage.enabled }}
|
||||
kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: {{ include "iceshrimp.datapvc" . }}
|
||||
labels:
|
||||
{{- include "iceshrimp.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
{{- .Values.iceshrimp.localStorage.annotations | toYaml | nindent 4}}
|
||||
spec:
|
||||
accessModes:
|
||||
{{- .Values.iceshrimp.localStorage.accessModes | toYaml | nindent 4 }}
|
||||
volumeMode: Filesystem
|
||||
{{- if .Values.iceshrimp.localStorage.class }}
|
||||
storageClassName: {{ .Values.iceshrimp.localStorage.class }}
|
||||
{{- end }}
|
||||
{{- with .Values.iceshrimp.localStorage.volumeName }}
|
||||
volumeName: {{ . }}
|
||||
{{- end }}
|
||||
resources:
|
||||
requests:
|
||||
storage: {{ .Values.iceshrimp.localStorage.size }}
|
||||
{{- end }}
|
@ -42,7 +42,18 @@ iceshrimp:
|
||||
prefix: files
|
||||
endpoint: "" # e.g. "nyc3.digitaloceanspaces.com:443"
|
||||
region: "" # e.g. "nyc3"
|
||||
|
||||
|
||||
localStorage:
|
||||
enabled: true
|
||||
claimName: null
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
labels: {}
|
||||
class:
|
||||
annotations:
|
||||
helm.sh/resource-policy: keep
|
||||
size: 10Gi
|
||||
|
||||
# -- If you want to allow iceshrimp to connect to private ips, enter the cidrs here.
|
||||
allowedPrivateNetworks: []
|
||||
# - "10.0.0.0/8"
|
||||
|
Loading…
Reference in New Issue
Block a user