| 1234567891011121314151617181920212223242526272829 | apiVersion: storage.k8s.io/v1kind: StorageClassmetadata:  name: rook-cephfs# Change "rook-ceph" provisioner prefix to match the operator namespace if neededprovisioner: supernova-ns.cephfs.csi.ceph.comparameters:  # clusterID is the namespace where the rook cluster is running  # If you change this namespace, also change the namespace below where the secret namespaces are defined  clusterID: supernova-ns  # CephFS filesystem name into which the volume shall be created  fsName: myfs  # Ceph pool into which the volume shall be created  # Required for provisionVolume: "true"  pool: myfs-replicated  # The secrets contain Ceph admin credentials. These are generated automatically by the operator  # in the same namespace as the cluster.  csi.storage.k8s.io/provisioner-secret-name: rook-csi-cephfs-provisioner  csi.storage.k8s.io/provisioner-secret-namespace: supernova-ns  csi.storage.k8s.io/controller-expand-secret-name: rook-csi-cephfs-provisioner  csi.storage.k8s.io/controller-expand-secret-namespace: supernova-ns  csi.storage.k8s.io/node-stage-secret-name: rook-csi-cephfs-node  csi.storage.k8s.io/node-stage-secret-namespace: supernova-nsreclaimPolicy: Delete
 |