mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 11:04:28 +08:00
16 lines
344 B
YAML
16 lines
344 B
YAML
|
apiVersion: v1
|
||
|
kind: PersistentVolumeClaim
|
||
|
metadata:
|
||
|
labels:
|
||
|
io.kompose.service: nextcloud-aio-redis
|
||
|
name: nextcloud-aio-redis
|
||
|
spec:
|
||
|
{{- if .Values.STORAGE_CLASS }}
|
||
|
storageClassName: {{ .Values.STORAGE_CLASS }}
|
||
|
{{- end }}
|
||
|
accessModes:
|
||
|
- ReadWriteMany
|
||
|
resources:
|
||
|
requests:
|
||
|
storage: {{ .Values.MAX_STORAGE_SIZE }}
|