Advertisement
Guest User

Untitled

a guest
Oct 4th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. # This is an example of a bring your own (byo) host inventory
  2.  
  3. # Create an OSEv3 group that contains the masters and nodes groups
  4. [OSEv3:children]
  5. [OSEv3:children]
  6. masters
  7. nodes
  8. etcd
  9.  
  10.  
  11.  
  12. [OSEv3:vars]
  13. ansible_ssh_user=root
  14. deployment_type=origin
  15. openshift_node_kubelet_args={'max-pods': ['40'], 'image-gc-high-threshold': ['90'], 'image-gc-low-threshold': ['80']}
  16. openshift_hostname=master.example.com
  17.  
  18. [masters]
  19. master.example.com openshift_ip=192.168.0.12 openshift_hostname=master.example.com openshift_public_ip=192.168.0.12 openshift_public_hostname=master.example.com
  20.  
  21. [nodes]
  22. master.example.com openshift_ip=192.168.0.12 openshift_hostname=master.example.com openshift_public_ip=192.168.0.12 openshift_public_hostname=master.example.com
  23.  
  24. [etcd]
  25. master.example.com openshift_ip=192.168.0.12 openshift_hostname=master.example.com openshift_public_ip=192.168.0.12 openshift_public_hostname=master.example.com
  26. ~
  27. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement