mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-10 17:03:44 +08:00
f19579a4bc
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
16 lines
394 B
YAML
Executable file
16 lines
394 B
YAML
Executable file
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-database
|
|
name: nextcloud-aio-database
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
|
spec:
|
|
{{- if .Values.STORAGE_CLASS }}
|
|
storageClassName: {{ .Values.STORAGE_CLASS }}
|
|
{{- end }}
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.DATABASE_STORAGE_SIZE }}
|