mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 03:24:48 +08:00
7968fab485
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
16 lines
395 B
YAML
Executable file
16 lines
395 B
YAML
Executable file
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-nextcloud
|
|
name: nextcloud-aio-nextcloud
|
|
namespace: {{ .Values.NAMESPACE }}
|
|
spec:
|
|
{{- if .Values.STORAGE_CLASS }}
|
|
storageClassName: {{ .Values.STORAGE_CLASS }}
|
|
{{- end }}
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.NEXTCLOUD_STORAGE_SIZE }}
|