seedbox-filesystem.yaml 702 B

1234567891011121314151617181920212223242526272829303132
  1. # TODO move to the main helm values
  2. apiVersion: ceph.rook.io/v1
  3. kind: CephFilesystem
  4. metadata:
  5. name: seedbox
  6. namespace: rook-ceph
  7. spec:
  8. metadataPool:
  9. replicated:
  10. size: 3
  11. deviceClass: ssd
  12. dataPools:
  13. - replicated:
  14. size: 2
  15. deviceClass: hdd
  16. parameters:
  17. min_size: "1"
  18. metadataServer:
  19. activeCount: 1
  20. activeStandby: true
  21. placement:
  22. nodeAffinity:
  23. requiredDuringSchedulingIgnoredDuringExecution:
  24. nodeSelectorTerms:
  25. - matchExpressions:
  26. - key: storage-node
  27. operator: In
  28. values:
  29. - "true"
  30. tolerations:
  31. - key: storage-node
  32. operator: Exists