# # Copyright 2021-2025 Software Radio Systems Limited # By using this file, you agree to the terms and conditions set # forth in the LICENSE file which can be found at the top level of # the distribution. # kind: PersistentVolume apiVersion: v1 metadata: name: db-pv spec: storageClassName: manual capacity: storage: 50Gi accessModes: - ReadWriteOnce - ReadWriteMany persistentVolumeReclaimPolicy: Retain hostPath: path: /mnt/data/vol --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: open5gs-mongodb-claim spec: storageClassName: manual accessModes: - ReadWriteOnce resources: requests: storage: 30Gi