hosts.glusterfs.external.example 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # This is an example of an OpenShift-Ansible host inventory for a cluster
  2. # with natively hosted, containerized GlusterFS storage.
  3. #
  4. # This inventory may be used with the deploy_cluster.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 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/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. # masters should be schedulable to run web console pods
  35. master openshift_schedulable=True
  36. node0 openshift_schedulable=True
  37. node1 openshift_schedulable=True
  38. node2 openshift_schedulable=True
  39. [etcd]
  40. master
  41. # Specify the glusterfs group, which contains the nodes of the external
  42. # GlusterFS cluster. At a minimum, each node must have "glusterfs_hostname"
  43. # and "glusterfs_devices" variables defined.
  44. #
  45. # The first variable indicates the hostname of the external GLusterFS node,
  46. # and must be reachable by the external heketi service.
  47. #
  48. # The second variable is a list of block devices the node will have access to
  49. # that are intended solely for use as GlusterFS storage. These block devices
  50. # must be bare (e.g. have no data, not be marked as LVM PVs), and will be
  51. # formatted.
  52. [glusterfs]
  53. node0.local glusterfs_ip='172.0.0.10' glusterfs_devices='[ "/dev/vdb" ]'
  54. node1.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdb", "/dev/vdc" ]'
  55. node2.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdd" ]'