Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # Create an OSEv3 group that contains the masters and nodes groups
  2. [OSEv3:children]
  3. masters
  4. nodes
  5.  
  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.  
  11. # If ansible_ssh_user is not root, ansible_become must be set to true
  12. #ansible_become=true
  13.  
  14. openshift_deployment_type=origin
  15.  
  16. # uncomment the following to enable htpasswd authentication; defaults to DenyAllPasswordIdentityProvider
  17. #openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/origin/master/htpasswd'}]
  18.  
  19. # host group for masters
  20. [masters]
  21. f8-app-openshift-01
  22.  
  23. # host group for etcd
  24. [etcd]
  25. f8-app-openshift-01.cmg.lbn.aws.linkbynet.com
  26.  
  27. # host group for nodes, includes region info
  28. [nodes]
  29. f8-app-openshift-01.cmg.lbn.aws.linkbynet.com
  30. f8-app-openshift-02.cmg.lbn.aws.linkbynet.com openshift_node_labels="{'region': 'primary', 'zone': 'east'}"
  31. f8-app-openshift-03.cmg.lbn.aws.linkbynet.com openshift_node_labels="{'region': 'primary', 'zone': 'west'}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement