hosts.byo.glusterfs.external.example 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. etcd
  22. # Specify there will be GlusterFS nodes
  23. glusterfs
  24. [OSEv3:vars]
  25. ansible_ssh_user=root
  26. openshift_deployment_type=origin
  27. # Specify that we want to use an external GlusterFS cluster
  28. openshift_storage_glusterfs_is_native=False
  29. # Specify the IP address or hostname of the external heketi service
  30. openshift_storage_glusterfs_heketi_url=172.0.0.1
  31. [masters]
  32. master
  33. [nodes]
  34. master openshift_schedulable=False
  35. node0 openshift_schedulable=True
  36. node1 openshift_schedulable=True
  37. node2 openshift_schedulable=True
  38. [etcd]
  39. master
  40. # Specify the glusterfs group, which contains the nodes of the external
  41. # GlusterFS cluster. At a minimum, each node must have "glusterfs_hostname"
  42. # and "glusterfs_devices" variables defined.
  43. #
  44. # The first variable indicates the hostname of the external GLusterFS node,
  45. # and must be reachable by the external heketi service.
  46. #
  47. # The second variable is a list of block devices the node will have access to
  48. # that are intended solely for use as GlusterFS storage. These block devices
  49. # must be bare (e.g. have no data, not be marked as LVM PVs), and will be
  50. # formatted.
  51. [glusterfs]
  52. node0.local glusterfs_ip='172.0.0.10' glusterfs_devices='[ "/dev/vdb" ]'
  53. node1.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdb", "/dev/vdc" ]'
  54. node2.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdd" ]'