inventory.j2 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # BEGIN Autogenerated hosts
  2. {% for host in groups['all'] %}
  3. {% if hostvars[host].get('ansible_connection', '') == 'local' %}
  4. {{ host }} ansible_connection=local
  5. {% else %}
  6. {{ host }}{% if 'ansible_host' in hostvars[host]
  7. %} ansible_host={{ hostvars[host]['ansible_host'] }}{% endif %}
  8. {% if 'private_v4' in hostvars[host]
  9. %} private_v4={{ hostvars[host]['private_v4'] }}{% endif %}
  10. {% if 'public_v4' in hostvars[host]
  11. %} public_v4={{ hostvars[host]['public_v4'] }}{% endif %}
  12. {% if 'ansible_user' in hostvars[host]
  13. %} ansible_user={{ hostvars[host]['ansible_user'] }}{% endif %}
  14. {% if 'ansible_private_key_file' in hostvars[host] and hostvars[host]['ansible_private_key_file']
  15. %} ansible_private_key_file={{ hostvars[host]['ansible_private_key_file'] }}{% endif %}
  16. {% if use_bastion|bool and 'ansible_ssh_extra_args' in hostvars[host]
  17. %} ansible_ssh_extra_args={{ hostvars[host]['ansible_ssh_extra_args']|quote }}{% endif %} openshift_hostname={{ host }}
  18. {% endif %}
  19. {% endfor %}
  20. # END autogenerated hosts
  21. #[all:vars]
  22. # For all group_vars, see ./group_vars/all.yml
  23. [infra_hosts:vars]
  24. openshift_node_labels={{ openshift_cluster_node_labels.infra | to_json | quote }}
  25. [app:vars]
  26. openshift_node_labels={{ openshift_cluster_node_labels.app | to_json | quote }}
  27. # Create an OSEv3 group that contains the master, nodes, etcd, and lb groups.
  28. # The lb group lets Ansible configure HAProxy as the load balancing solution.
  29. # Comment lb out if your load balancer is pre-configured.
  30. [cluster_hosts:children]
  31. OSEv3
  32. dns
  33. [OSEv3:children]
  34. nodes
  35. etcd
  36. lb
  37. new_nodes
  38. # Set variables common for all OSEv3 hosts
  39. [OSEv3:vars]
  40. # For OSEv3 normal group vars, see ./group_vars/OSEv3.yml
  41. {% if cinder_registry_volume is defined and 'volume' in cinder_registry_volume %}
  42. openshift_hosted_registry_storage_openstack_volumeID="{{ cinder_registry_volume.id }}"
  43. openshift_hosted_registry_storage_volume_size="{{ cinder_registry_volume.volume.size }}Gi"
  44. {% endif %}
  45. # Host Groups
  46. [masters:children]
  47. masters.{{ stack_name }}
  48. [etcd:children]
  49. etcd.{{ stack_name }}
  50. {% if 'etcd' not in groups or groups['etcd']|length == 0 %}masters.{{ stack_name }}{% endif %}
  51. [nodes:children]
  52. masters
  53. infra.{{ stack_name }}
  54. nodes.{{ stack_name }}
  55. [infra_hosts:children]
  56. infra.{{ stack_name }}
  57. [app:children]
  58. nodes.{{ stack_name }}
  59. [dns:children]
  60. dns.{{ stack_name }}
  61. [lb:children]
  62. lb.{{ stack_name }}
  63. [new_nodes:children]
  64. # Empty placeholders for all groups of the cluster nodes
  65. [masters.{{ stack_name }}]
  66. [etcd.{{ stack_name }}]
  67. [infra.{{ stack_name }}]
  68. [nodes.{{ stack_name }}]
  69. [app.{{ stack_name }}]
  70. [dns.{{ stack_name }}]
  71. [lb.{{ stack_name }}]
  72. [new_nodes.{{ stack_name }}]
  73. # BEGIN Autogenerated groups
  74. {% for group in groups %}
  75. {% if group not in ['ungrouped', 'all'] %}
  76. [{{ group }}]
  77. {% for host in groups[group] %}
  78. {{ host }}
  79. {% endfor %}
  80. {% endif %}
  81. {% endfor %}
  82. # END Autogenerated groups