Advertisement
Guest User

Untitled

a guest
Feb 14th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. # Create an OSEv3 group that contains the masters, nodes, and etcd groups
  2. [OSEv3:children]
  3. masters
  4. nodes
  5. etcd
  6.  
  7.  
  8. # Set variables common for all OSEv3 hosts
  9. [OSEv3:vars]
  10. #registry.redhat.io auth
  11. oreg_url=registry.redhat.io/openshift3/ose-${component}:${version}
  12. oreg_auth_user=USERNAME
  13. oreg_auth_password=PASSWORD
  14. openshift_examples_modify_imagestreams=true
  15.  
  16.  
  17. # Do not install monitoring stack
  18. openshift_cluster_monitoring_operator_install=false
  19.  
  20. # Enable CRIO-O
  21. openshift_use_crio=True
  22. openshift_use_crio_only=False
  23. openshift_crio_enable_docker_gc=True
  24.  
  25.  
  26. openshift_disable_check=disk_availability,docker_storage,memory_availability
  27. openshift_master_default_subdomain=apps.spolti.cloud
  28.  
  29.  
  30. # SSH user, this user should allow ssh based auth without requiring a password
  31. ansible_ssh_user=root
  32.  
  33. openshift_deployment_type=openshift-enterprise
  34. openshift_master_identity_providers=[{'name': 'allow_all', 'login': 'true', 'challenge': 'true', 'kind': 'AllowAllPasswordIdentityProvider'}]
  35.  
  36. [masters]
  37. ocp.spolti.cloud
  38.  
  39. [etcd]
  40. ocp.spolti.cloud
  41.  
  42. [nodes]
  43. #ocp.spolti.cloud openshift_node_group_name='node-config-all-in-one'
  44. ocp.spolti.cloud openshift_node_group_name='node-config-all-in-one-crio'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement