| 123456789101112131415161718192021222324252627282930313233 |
- ---
- apiVersion: ceph.rook.io/v1
- kind: CephBlockPool
- metadata:
- name: intelpool
- namespace: rook-ceph # namespace:cluster
- spec:
- # 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/v1
- kind: CephFilesystem
- metadata:
- name: ceph-cachetier
- namespace: rook-ceph
- spec:
- metadataPool:
- replicated:
- size: 3
- dataPools:
- - name: cache-default
- replicated:
- size: 3
- metadataServer:
- activeCount: 1
- activeStandby: true
|