hosts.localhost 665 B

1234567891011121314151617181920212223242526
  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_release=3.7
  11. osm_cluster_network_cidr=10.128.0.0/14
  12. openshift_portal_net=172.30.0.0/16
  13. osm_host_subnet_length=9
  14. # localhost likely doesn't meet the minimum requirements
  15. openshift_disable_check=disk_availability,memory_availability
  16. [masters]
  17. localhost ansible_connection=local
  18. [etcd]
  19. localhost ansible_connection=local
  20. [nodes]
  21. localhost ansible_connection=local openshift_schedulable=true openshift_node_labels="{'region': 'infra', 'zone': 'default'}"