Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. apiVersion: ceph.rook.io/v1
  2. kind: CephCluster
  3. metadata:
  4. name: my-rook-ceph
  5. namespace: my-rook-ceph
  6. spec:
  7. cephVersion:
  8. image: 'ceph/ceph:v14.2.1-20190430'
  9. dataDirHostPath: /var/lib/rook
  10. mon:
  11. count: 3
  12. allowMultiplePerNode: false
  13. dashboard:
  14. enabled: true
  15. network:
  16. hostNetwork: false
  17. rbdMirroring:
  18. workers: 0
  19. placement:
  20. all:
  21. nodeAffinity:
  22. requiredDuringSchedulingIgnoredDuringExecution:
  23. nodeSelectorTerms:
  24. - matchExpressions:
  25. - key: nodetype
  26. operator: In
  27. values:
  28. - storage
  29. podAffinity:
  30. podAntiAffinity:
  31. tolerations:
  32. - key: nodetype
  33. operator: Equal
  34. value: storage
  35. effect: "NoSchedule"
  36. storage:
  37. useAllNodes: true
  38. useAllDevices: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement