Guest User

Untitled

a guest
Feb 10th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. [OSEv3:children]
  2. masters
  3. nodes
  4. etcd
  5. glusterfs
  6. glusterfs_registry
  7.  
  8. [OSEv3:vars]
  9. ansible_ssh_user=root
  10.  
  11. openshift_deployment_type=openshift-enterprise
  12.  
  13. oreg_url=registry.redhat.io/openshift3/ose-${component}:${version}
  14. oreg_auth_user="user-key"
  15. oreg_auth_password="key"
  16.  
  17. openshift_examples_modify_imagestreams=true
  18. openshift_master_identity_providers=[{'name': 'Local', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider'}]
  19. openshift_master_htpasswd_users={'admin': 'Contoso', 'superadmin': 'Contoso'}
  20.  
  21. openshift_master_default_subdomain=apps.contoso.com
  22. openshift_install_examples=true
  23.  
  24. os_sdn_network_plugin_name='redhat/openshift-ovs-networkpolicy'
  25.  
  26. openshift_clock_enabled=true
  27.  
  28. openshift_storage_glusterfs_block_storageclass=true
  29. openshift_storage_glusterfs_block_storageclass_default=false
  30.  
  31. openshift_additional_registry_credentials=[{'host':'registry.connect.redhat.com','user':'user-key-gen','password':'key gen','test_image':'mongodb/enterprise-operator:0.3.2'}]
  32.  
  33. [masters]
  34. master1.contoso.com
  35.  
  36. # host group for etcd
  37. [etcd]
  38. master1.contoso.com
  39.  
  40. # host group for nodes, includes region info
  41. [nodes]
  42. master1.contoso.com openshift_node_group_name='node-config-master-infra'
  43. app1.contoso.com openshift_node_group_name='node-config-compute'
  44. app2.contoso.com openshift_node_group_name='node-config-compute'
  45.  
  46. [glusterfs]
  47. master1.contoso.com glusterfs_devices='["/dev/vdd"]'
  48. app1.contoso.com glusterfs_devices='["/dev/vdd"]'
  49. app2.contoso.com glusterfs_devices='["/dev/vdd"]'
  50.  
  51. [glusterfs_registry]
  52. master1.contoso.com glusterfs_devices='["/dev/vdc"]'
  53. app1.contoso.com glusterfs_devices='["/dev/vdc"]'
  54. app2.contoso.com glusterfs_devices='["/dev/vdc"]'
Add Comment
Please, Sign In to add comment