builtin-mgr.yaml 794 B

1234567891011121314151617181920212223
  1. # https://github.com/rook/rook/issues/11368
  2. apiVersion: ceph.rook.io/v1
  3. kind: CephBlockPool
  4. metadata:
  5. # If the built-in Ceph pool used by the Ceph mgr needs to be configured with alternate
  6. # settings, create this pool with any of the pool properties. Create this pool immediately
  7. # with the cluster CR, or else some properties may not be applied when Ceph creates the
  8. # pool by default.
  9. name: builtin-mgr
  10. namespace: rook-ceph
  11. spec:
  12. # The required pool name with underscores cannot be specified as a K8s resource name, thus we override
  13. # the pool name created in Ceph with this name property.
  14. name: .mgr
  15. failureDomain: host
  16. replicated:
  17. size: 3
  18. requireSafeReplicaSize: true
  19. deviceClass: ssd
  20. parameters:
  21. compression_mode: none
  22. mirroring:
  23. enabled: false