mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 01:13:41 +08:00
cdb16b0411
Signed-off-by: BP <busta.pipes@gmail.com>
16 lines
383 B
YAML
Executable file
16 lines
383 B
YAML
Executable file
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-redis
|
|
name: nextcloud-aio-redis
|
|
namespace: {{ .Values.NAMESPACE }}
|
|
spec:
|
|
{{- if .Values.STORAGE_CLASS }}
|
|
storageClassName: {{ .Values.STORAGE_CLASS }}
|
|
{{- end }}
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.REDIS_STORAGE_SIZE }}
|