hosts.glusterfs.native.example 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # This is an example of an OpenShift-Ansible host inventory for a cluster
  2. # with natively hosted, containerized GlusterFS storage for applications. It
  3. # will also automatically create a StorageClass for this purpose.
  4. #
  5. # This inventory may be used with the deploy_cluster.yml playbook to deploy a new
  6. # cluster with GlusterFS storage.
  7. #
  8. # This inventory may also be used with 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/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. # masters should be schedulable to run web console pods
  28. master openshift_schedulable=True
  29. # A hosted registry, by default, will only be deployed on nodes labeled
  30. # "node-role.kubernetes.io/infra=true".
  31. node0 openshift_schedulable=True
  32. node1 openshift_schedulable=True
  33. node2 openshift_schedulable=True
  34. [etcd]
  35. master
  36. # Specify the glusterfs group, which contains the nodes that will host
  37. # GlusterFS storage pods. At a minimum, each node must have a
  38. # "glusterfs_devices" variable defined. This variable is a list of block
  39. # devices the node will have access to that is intended solely for use as
  40. # GlusterFS storage. These block devices must be bare (e.g. have no data, not
  41. # be marked as LVM PVs), and will be formatted.
  42. [glusterfs]
  43. node0 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  44. node1 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  45. node2 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'