hosts.byo.glusterfs.native.example 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. etcd
  19. # Specify there will be GlusterFS nodes
  20. glusterfs
  21. [OSEv3:vars]
  22. ansible_ssh_user=root
  23. openshift_deployment_type=origin
  24. [masters]
  25. master
  26. [nodes]
  27. master openshift_schedulable=False
  28. # A hosted registry, by default, will only be deployed on nodes labeled
  29. # "region=infra".
  30. node0 openshift_schedulable=True
  31. node1 openshift_schedulable=True
  32. node2 openshift_schedulable=True
  33. [etcd]
  34. master
  35. # Specify the glusterfs group, which contains the nodes that will host
  36. # GlusterFS storage pods. At a minimum, each node must have a
  37. # "glusterfs_devices" variable defined. This variable is a list of block
  38. # devices the node will have access to that is intended solely for use as
  39. # GlusterFS storage. These block devices must be bare (e.g. have no data, not
  40. # be marked as LVM PVs), and will be formatted.
  41. [glusterfs]
  42. node0 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  43. node1 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  44. node2 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'