Hello all, I have both backup and pitr configured in the configuration of a perconaxtradbcluster in Vanilla Kubernetes. In the extract that configures this part I have established the following:
backup:
    allowParallel: true
    image: percona/percona-xtradb-cluster-operator:1.13.0-pxc8.0-backup-pxb8.0.32
    pitr:
      enabled: true
      storageName: fs-pvc
      timeBetweenUploads: 60
    storages:
      fs-pvc:
        type: filesystem
        volume:
          persistentVolumeClaim:
            storageClassName: nfs-csi
            accessModes: [ "ReadWriteOnce" ]
            resources:
              requests:
                storage: 2G
    schedule:
      - name: "daily-backup"
        schedule: "0/10 12 * * *"
        keep: 6
        storageName: fs-pvc
However, even though the BACKUP WORKS correctly, the PITR reports the ERROR below:
   message: >-
     get binlog collector deploy for cluster 'clusterdb': get storage
     **envs: fs-pvc storage has unsupported type filesystem**
   reason: ErrorReconcile
   status: 'True'
   type: error
If someone could help me. thank you.