hosts.localhost 554 B

1234567891011121314151617181920212223
  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. [masters]
  14. localhost ansible_connection=local
  15. [etcd]
  16. localhost ansible_connection=local
  17. [nodes]
  18. localhost ansible_connection=local openshift_node_labels="{'node-role.kubernetes.io/infra': 'true'}"