hosts.glusterfs.mixed.example 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 and a native
  28. # heketi service
  29. openshift_storage_glusterfs_is_native=False
  30. openshift_storage_glusterfs_heketi_is_native=True
  31. # Specify that heketi will use SSH to communicate to the GlusterFS nodes and
  32. # the private key file it will use for authentication
  33. openshift_storage_glusterfs_heketi_executor=ssh
  34. openshift_storage_glusterfs_heketi_ssh_keyfile=/root/id_rsa
  35. [masters]
  36. master
  37. [nodes]
  38. # masters should be schedulable to run web console pods
  39. master openshift_schedulable=True
  40. node0 openshift_schedulable=True
  41. node1 openshift_schedulable=True
  42. node2 openshift_schedulable=True
  43. [etcd]
  44. master
  45. # Specify the glusterfs group, which contains the nodes of the external
  46. # GlusterFS cluster. At a minimum, each node must have "glusterfs_hostname"
  47. # and "glusterfs_devices" variables defined.
  48. #
  49. # The first variable indicates the hostname of the external GLusterFS node,
  50. # and must be reachable by the external heketi service.
  51. #
  52. # The second variable is a list of block devices the node will have access to
  53. # that are intended solely for use as GlusterFS storage. These block devices
  54. # must be bare (e.g. have no data, not be marked as LVM PVs), and will be
  55. # formatted.
  56. [glusterfs]
  57. node0.local glusterfs_ip='172.0.0.10' glusterfs_devices='[ "/dev/vdb" ]'
  58. node1.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdb", "/dev/vdc" ]'
  59. node2.local glusterfs_ip='172.0.0.11' glusterfs_devices='[ "/dev/vdd" ]'