cache-tier.yaml 751 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. apiVersion: ceph.rook.io/v1
  3. kind: CephBlockPool
  4. metadata:
  5. name: intelpool
  6. namespace: rook-ceph # namespace:cluster
  7. spec:
  8. # The failure domain will spread the replicas of the data across different failure zones
  9. failureDomain: host
  10. # For a pool based on raw copies, specify the number of copies. A size of 1 indicates no redundancy.
  11. replicated:
  12. size: 3
  13. requireSafeReplicaSize: true
  14. hybridStorage:
  15. primaryDeviceClass: intelssd
  16. ---
  17. apiVersion: ceph.rook.io/v1
  18. kind: CephFilesystem
  19. metadata:
  20. name: ceph-cachetier
  21. namespace: rook-ceph
  22. spec:
  23. metadataPool:
  24. replicated:
  25. size: 3
  26. dataPools:
  27. - name: cache-default
  28. replicated:
  29. size: 3
  30. metadataServer:
  31. activeCount: 1
  32. activeStandby: true