hosts.localhost 843 B

123456789101112131415161718192021222324252627
  1. #bare minimum hostfile
  2. [OSEv3:children]
  3. masters
  4. nodes
  5. etcd
  6. [OSEv3:vars]
  7. # if your target hosts are Fedora uncomment this
  8. #ansible_python_interpreter=/usr/bin/python3
  9. openshift_deployment_type=origin
  10. openshift_portal_net=172.30.0.0/16
  11. # localhost likely doesn't meet the minimum requirements
  12. openshift_disable_check=disk_availability,memory_availability
  13. openshift_node_groups=[{'name': 'node-config-all-in-one', 'labels': ['node-role.kubernetes.io/master=true', 'node-role.kubernetes.io/infra=true', 'node-role.kubernetes.io/compute=true']}]
  14. [masters]
  15. localhost ansible_connection=local
  16. [etcd]
  17. localhost ansible_connection=local
  18. [nodes]
  19. # openshift_node_group_name should refer to a dictionary with matching key of name in list openshift_node_groups.
  20. localhost ansible_connection=local openshift_node_group_name="node-config-all-in-one"