Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
2,650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. ---
  2. openshift_deployment_type: origin
  3. #openshift_deployment_type: openshift-enterprise
  4. #openshift_release: v3.5
  5. openshift_master_default_subdomain: "apps.{{ env_id }}.{{ public_dns_domain }}"
  6. openshift_master_unsupported_embedded_etcd: true
  7.  
  8. #openshift_master_cluster_method: native
  9. #openshift_master_cluster_hostname: "{{ groups.lb.0|default(groups.masters.0) }}"
  10. #openshift_master_cluster_public_hostname: "{{ groups.lb.0|default(groups.masters.0) }}"
  11.  
  12. osm_default_node_selector: 'region=primary'
  13.  
  14. openshift_hosted_router_wait: True
  15. openshift_hosted_registry_wait: True
  16.  
  17. ## Openstack credentials
  18. #openshift_cloudprovider_kind=openstack
  19. #openshift_cloudprovider_openstack_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
  20. #openshift_cloudprovider_openstack_username: "{{ lookup('env','OS_USERNAME') }}"
  21. #openshift_cloudprovider_openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
  22. #openshift_cloudprovider_openstack_tenant_name: "{{ lookup('env','OS_TENANT_NAME') }}"
  23. #openshift_cloudprovider_openstack_region="{{ lookup('env', 'OS_REGION_NAME') }}"
  24.  
  25.  
  26. ## Use Cinder volume for Openshift registry:
  27. #openshift_hosted_registry_storage_kind: openstack
  28. #openshift_hosted_registry_storage_access_modes: ['ReadWriteOnce']
  29. #openshift_hosted_registry_storage_openstack_filesystem: xfs
  30.  
  31. ## Configure this if you're attaching a Cinder volume you've set up.
  32. ## If you're using the `cinder_hosted_registry_name` option from
  33. ## `all.yml`, this will be configured automaticaly.
  34. #openshift_hosted_registry_storage_openstack_volumeID: e0ba2d73-d2f9-4514-a3b2-a0ced507fa05
  35. #openshift_hosted_registry_storage_volume_size: 10Gi
  36.  
  37.  
  38. # NOTE(shadower): the hostname check seems to always fail because the
  39. # host's floating IP address doesn't match the address received from
  40. # inside the host.
  41. openshift_override_hostname_check: true
  42.  
  43. # For POCs or demo environments that are using smaller instances than
  44. # the official recommended values for RAM and DISK, uncomment the line below.
  45. #openshift_disable_check: disk_availability,memory_availability
  46.  
  47. # NOTE(shadower): Always switch to root on the OSEv3 nodes.
  48. # openshift-ansible requires an explicit `become`.
  49. ansible_become: true
  50.  
  51. openshift_disable_check: disk_availability,memory_availability,docker_storage
  52.  
  53. openshift_master_identity_providers:
  54. - name: 'htpasswd_auth'
  55. login: 'true'
  56. challenge: 'true'
  57. kind: 'HTPasswdPasswordIdentityProvider'
  58. filename: '/etc/origin/master/htpasswd'
  59.  
  60. openshift_master_htpasswd_users:
  61. # password: `password`
  62. demo: '$apr1$vUfm7jQS$C6Vn0GDScgOjzvk1PSHe1/'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement