mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
19 lines
473 B
YAML
19 lines
473 B
YAML
|
|
{{- if eq .Values.TALK_RECORDING_ENABLED "yes" }}
|
||
|
|
apiVersion: v1
|
||
|
|
kind: PersistentVolumeClaim
|
||
|
|
metadata:
|
||
|
|
labels:
|
||
|
|
io.kompose.service: nextcloud-aio-talk-recording
|
||
|
|
name: nextcloud-aio-talk-recording
|
||
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
||
|
|
spec:
|
||
|
|
{{- if .Values.STORAGE_CLASS }}
|
||
|
|
storageClassName: {{ .Values.STORAGE_CLASS }}
|
||
|
|
{{- end }}
|
||
|
|
accessModes:
|
||
|
|
- ReadWriteOnce
|
||
|
|
resources:
|
||
|
|
requests:
|
||
|
|
storage: {{ .Values.TALK_RECORDING_STORAGE_SIZE }}
|
||
|
|
{{- end }}
|