| 123456789101112131415161718192021222324252627282930313233 | ---apiVersion: ceph.rook.io/v1kind: CephBlockPoolmetadata:  name: intelpool  namespace: rook-ceph # namespace:clusterspec:  # The failure domain will spread the replicas of the data across different failure zones  failureDomain: host  # For a pool based on raw copies, specify the number of copies. A size of 1 indicates no redundancy.  replicated:    size: 3    requireSafeReplicaSize: true    hybridStorage:      primaryDeviceClass: intelssd---apiVersion: ceph.rook.io/v1kind: CephFilesystemmetadata:  name: ceph-cachetier  namespace: rook-cephspec:  metadataPool:    replicated:      size: 3  dataPools:   - name: cache-default     replicated:       size: 3  metadataServer:    activeCount: 1    activeStandby: true
 |