mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-06-03 09:20:09 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
20 lines
528 B
YAML
Executable File
20 lines
528 B
YAML
Executable File
# SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-database-dump
|
|
name: nextcloud-aio-database-dump
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
|
spec:
|
|
{{- if .Values.STORAGE_CLASS }}
|
|
storageClassName: {{ .Values.STORAGE_CLASS }}
|
|
{{- end }}
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.DATABASE_DUMP_STORAGE_SIZE }}
|