hosts.byo.glusterfs.native.example 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # This is an example of a bring your own (byo) host inventory for a cluster
  2. # with natively hosted, containerized GlusterFS storage for applications. It
  3. # will also autmatically create a StorageClass for this purpose.
  4. #
  5. # This inventory may be used with the byo/config.yml playbook to deploy a new
  6. # cluster with GlusterFS storage.
  7. #
  8. # This inventory may also be used with byo/openshift-glusterfs/config.yml to
  9. # deploy GlusterFS storage on an existing cluster.
  10. #
  11. # There are additional configuration parameters that can be specified to
  12. # control the deployment and state of a GlusterFS cluster. Please see the
  13. # documentation in playbooks/byo/openshift-glusterfs/README.md and
  14. # roles/openshift_storage_glusterfs/README.md for additional details.
  15. [OSEv3:children]
  16. masters
  17. nodes
  18. # Specify there will be GlusterFS nodes
  19. glusterfs
  20. [OSEv3:vars]
  21. ansible_ssh_user=root
  22. openshift_deployment_type=origin
  23. [masters]
  24. master
  25. [nodes]
  26. master openshift_schedulable=False
  27. # A hosted registry, by default, will only be deployed on nodes labeled
  28. # "region=infra".
  29. node0 openshift_schedulable=True
  30. node1 openshift_schedulable=True
  31. node2 openshift_schedulable=True
  32. # Specify the glusterfs group, which contains the nodes that will host
  33. # GlusterFS storage pods. At a minimum, each node must have a
  34. # "glusterfs_devices" variable defined. This variable is a list of block
  35. # devices the node will have access to that is intended solely for use as
  36. # GlusterFS storage. These block devices must be bare (e.g. have no data, not
  37. # be marked as LVM PVs), and will be formatted.
  38. [glusterfs]
  39. node0 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  40. node1 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  41. node2 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'