hosts.glusterfs.storage-and-registry.example 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # This is an example of an OpenShift-Ansible host inventory for a cluster
  2. # with natively hosted, containerized GlusterFS storage for both general
  3. # application use and a natively hosted Docker registry. It will also create a
  4. # StorageClass for the general storage.
  5. #
  6. # This inventory may be used with the deploy_cluster.yml playbook to deploy a new
  7. # cluster with GlusterFS storage.
  8. #
  9. # This inventory may also be used with openshift-glusterfs/config.yml to
  10. # deploy GlusterFS storage on an existing cluster. With this playbook, the
  11. # registry backend volume will be created but the administrator must then
  12. # either deploy a hosted registry or change an existing hosted registry to use
  13. # that volume.
  14. #
  15. # There are additional configuration parameters that can be specified to
  16. # control the deployment and state of a GlusterFS cluster. Please see the
  17. # documentation in playbooks/openshift-glusterfs/README.md and
  18. # roles/openshift_storage_glusterfs/README.md for additional details.
  19. [OSEv3:children]
  20. masters
  21. nodes
  22. etcd
  23. # Specify there will be GlusterFS nodes
  24. glusterfs
  25. glusterfs_registry
  26. [OSEv3:vars]
  27. ansible_ssh_user=root
  28. openshift_deployment_type=origin
  29. # Specify that we want to use GlusterFS storage for a hosted registry
  30. openshift_hosted_registry_storage_kind=glusterfs
  31. [masters]
  32. master
  33. [nodes]
  34. # masters should be schedulable to run web console pods
  35. master openshift_node_group_name="node-config-master" openshift_schedulable=True
  36. # It is recommended to not use a single cluster for both general and registry
  37. # storage, so two three-node clusters will be required.
  38. node0 openshift_node_group_name="node-config-compute"
  39. node1 openshift_node_group_name="node-config-compute"
  40. node2 openshift_node_group_name="node-config-compute"
  41. # A hosted registry, by default, will only be deployed on nodes labeled
  42. # "node-role.kubernetes.io/infra=true".
  43. node3 openshift_node_group_name="node-config-infra"
  44. node4 openshift_node_group_name="node-config-infra"
  45. node5 openshift_node_group_name="node-config-infra"
  46. [etcd]
  47. master
  48. # Specify the glusterfs group, which contains the nodes that will host
  49. # GlusterFS storage pods. At a minimum, each node must have a
  50. # "glusterfs_devices" variable defined. This variable is a list of block
  51. # devices the node will have access to that is intended solely for use as
  52. # GlusterFS storage. These block devices must be bare (e.g. have no data, not
  53. # be marked as LVM PVs), and will be formatted.
  54. [glusterfs]
  55. node0 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  56. node1 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  57. node2 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  58. [glusterfs_registry]
  59. node3 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  60. node4 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  61. node5 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'