Advertisement
Guest User

Untitled

a guest
Oct 10th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Create an OSEv3 group that contains the masters and nodes groups
  2. [OSEv3:children]
  3. masters
  4. nodes
  5. #new_nodes
  6. # Set variables common for all OSEv3 hosts
  7. [OSEv3:vars]
  8. # SSH user, this user should allow ssh based auth without requiring a password
  9. ansible_ssh_user=root
  10. #ansible_ssh_pass=
  11. osm_default_subdomain=139.59.157.21.xip.io
  12. containerized=true
  13. # If ansible_ssh_user is not root, ansible_sudo must be set to true
  14. #ansible_sudo=true
  15.  
  16. deployment_type=origin
  17. openshift_release=v1.3.0
  18. docker_upgrade=false
  19. # uncomment the following to enable htpasswd authentication; defaults to DenyAllPasswordIdentityProvider
  20. openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/origin/htpasswd'}]
  21.  
  22. # host group for masters
  23. [masters]
  24. 139.59.157.21
  25. # host group for nodes, includes region info[nodes]
  26. [nodes]
  27. 139.59.157.21 openshift_node_labels="{'region': 'infra', 'zone': 'default'}" openshift_schedulable=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement