hosts.glusterfs.registry-only.example 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # This is an example of an OpenShift-Ansible host inventory for a cluster
  2. # with natively hosted, containerized GlusterFS storage for exclusive use
  3. # as storage for a natively hosted Docker registry.
  4. #
  5. # This inventory may be used with the deploy_cluster.yml playbook to deploy a new
  6. # cluster with GlusterFS storage, which will use that storage to create a
  7. # volume that will provide backend storage for a hosted Docker registry.
  8. #
  9. # This inventory may also be used with openshift-glusterfs/registry.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_registry
  25. [OSEv3:vars]
  26. ansible_ssh_user=root
  27. openshift_deployment_type=origin
  28. # Specify that we want to use GlusterFS storage for a hosted registry
  29. openshift_hosted_registry_storage_kind=glusterfs
  30. [masters]
  31. master openshift_node_group_name="node-config-master"
  32. [nodes]
  33. # masters should be schedulable to run web console pods
  34. master openshift_schedulable=True
  35. # A hosted registry, by default, will only be deployed on nodes labeled
  36. # "node-role.kubernetes.io/infra=true".
  37. node0 openshift_node_group_name="node-config-infra"
  38. node1 openshift_node_group_name="node-config-infra"
  39. node2 openshift_node_group_name="node-config-infra"
  40. [etcd]
  41. master
  42. # Specify the glusterfs group, which contains the nodes that will host
  43. # GlusterFS storage pods. At a minimum, each node must have a
  44. # "glusterfs_devices" variable defined. This variable is a list of block
  45. # devices the node will have access to that is intended solely for use as
  46. # GlusterFS storage. These block devices must be bare (e.g. have no data, not
  47. # be marked as LVM PVs), and will be formatted.
  48. [glusterfs_registry]
  49. node0 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  50. node1 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'
  51. node2 glusterfs_devices='[ "/dev/vdb", "/dev/vdc", "/dev/vdd" ]'