hosts.byo.glusterfs.external.example 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # This is an example of a bring your own (byo) host inventory for a cluster
  2. # with natively hosted, containerized GlusterFS storage.
  3. #
  4. # This inventory may be used with the byo/config.yml playbook to deploy a new
  5. # cluster with GlusterFS storage, which will use that storage to create a
  6. # volume that will provide backend storage for a hosted Docker registry.
  7. #
  8. # This inventory may also be used with byo/openshift-glusterfs/config.yml to
  9. # deploy GlusterFS storage on an existing cluster. With this playbook, the
  10. # registry backend volume will be created but the administrator must then
  11. # either deploy a hosted registry or change an existing hosted registry to use
  12. # that volume.
  13. #
  14. # There are additional configuration parameters that can be specified to
  15. # control the deployment and state of a GlusterFS cluster. Please see the
  16. # documentation in playbooks/byo/openshift-glusterfs/README.md and
  17. # roles/openshift_storage_glusterfs/README.md for additional details.
  18. [OSEv3:children]
  19. masters
  20. nodes
  21. # Specify there will be GlusterFS nodes
  22. glusterfs
  23. [OSEv3:vars]
  24. ansible_ssh_user=root
  25. openshift_deployment_type=origin
  26. # Specify that we want to use an external GlusterFS cluster
  27. openshift_storage_glusterfs_is_native=False
  28. # Specify the IP address or hostname of the external heketi service
  29. openshift_storage_glusterfs_heketi_url=172.0.0.1
  30. [masters]
  31. master
  32. [nodes]
  33. master openshift_schedulable=False
  34. node0 openshift_schedulable=True
  35. node1 openshift_schedulable=True
  36. node2 openshift_schedulable=True
  37. # Specify the glusterfs group, which contains the nodes of the external
  38. # GlusterFS cluster. At a minimum, each node must have "glusterfs_hostname"
  39. # and "glusterfs_devices" variables defined.
  40. #
  41. # The first variable indicates the hostname of the external GLusterFS node,
  42. # and must be reachable by the external heketi service.
  43. #
  44. # The second variable is a list of block devices the node will have access to
  45. # that are intended solely for use as GlusterFS storage. These block devices
  46. # must be bare (e.g. have no data, not be marked as LVM PVs), and will be
  47. # formatted.
  48. [glusterfs]
  49. node0.local glusterfs_ip='172.0.0.10' glusterfs_devices='[ "/dev/vdb" ]'
  50. node1.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdb", "/dev/vdc" ]'
  51. node2.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdd" ]'