Creating Persistent Volume for metadata backup

Last published : Aug 25, 2026
Ensure that you run the following steps on the primary and secondary clusters to create a PVC for backing up and restoring application metadata across clusters.
  • Create a Storage Class by running the following sc.yaml.
    apiVersion: storage.k8s.io/v1
    kind: StorageClass
    metadata:
      name: infoscale-dr-csi-sc
    parameters:
      fstype: vxfs
      layout: mirror
    allowVolumeExpansion: true
    provisioner: org.veritas.infoscale
    reclaimPolicy: Delete
    -  Create a Persistent Volume Claim (PVC) by running the following ``pvc.yaml``.
    apiVersion: v1
    kind: PersistentVolumeClaim
    metadata:
      name: infoscale-dr-meta-bkp-pvc
      namespace: infoscale-vtas
    spec:
      accessModes:
      -  ReadWriteOnce
      resources:
        requests:
          storage: 4Gi
      storageClassName: infoscale-dr-csi-sc
      volumeMode: Filesystem