OSEv3.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. openshift_deployment_type: origin
  3. #openshift_deployment_type: openshift-enterprise
  4. #openshift_release: v3.5
  5. openshift_master_default_subdomain: "apps.{{ openshift_openstack_clusterid }}.{{ openshift_openstack_public_dns_domain }}"
  6. openshift_master_cluster_method: native
  7. openshift_master_cluster_public_hostname: "console.{{ openshift_openstack_clusterid }}.{{ openshift_openstack_public_dns_domain }}"
  8. osm_default_node_selector: 'region=primary'
  9. openshift_hosted_router_wait: True
  10. openshift_hosted_registry_wait: True
  11. ## Openstack credentials
  12. #openshift_cloudprovider_kind=openstack
  13. #openshift_cloudprovider_openstack_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
  14. #openshift_cloudprovider_openstack_username: "{{ lookup('env','OS_USERNAME') }}"
  15. #openshift_cloudprovider_openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
  16. #openshift_cloudprovider_openstack_tenant_name: "{{ lookup('env','OS_TENANT_NAME') }}"
  17. #openshift_cloudprovider_openstack_region="{{ lookup('env', 'OS_REGION_NAME') }}"
  18. ## Use Cinder volume for Openshift registry:
  19. #openshift_hosted_registry_storage_kind: openstack
  20. #openshift_hosted_registry_storage_access_modes: ['ReadWriteOnce']
  21. #openshift_hosted_registry_storage_openstack_filesystem: xfs
  22. ## NOTE(shadower): This won't work until the openshift-ansible issue #5657 is fixed:
  23. ## https://github.com/openshift/openshift-ansible/issues/5657
  24. ## If you're using the `openshift_openstack_cinder_hosted_registry_name` option from
  25. ## `all.yml`, uncomment these lines:
  26. #openshift_hosted_registry_storage_openstack_volumeID: "{{ lookup('os_cinder', openshift_openstack_cinder_hosted_registry_name).id }}"
  27. #openshift_hosted_registry_storage_volume_size: "{{ openshift_openstack_cinder_hosted_registry_size_gb }}Gi"
  28. ## If you're using a Cinder volume you've set up yourself, uncomment these lines:
  29. #openshift_hosted_registry_storage_openstack_volumeID: e0ba2d73-d2f9-4514-a3b2-a0ced507fa05
  30. #openshift_hosted_registry_storage_volume_size: 10Gi
  31. # NOTE(shadower): the hostname check seems to always fail because the
  32. # host's floating IP address doesn't match the address received from
  33. # inside the host.
  34. openshift_override_hostname_check: true
  35. # For POCs or demo environments that are using smaller instances than
  36. # the official recommended values for RAM and DISK, uncomment the line below.
  37. #openshift_disable_check: disk_availability,memory_availability
  38. # NOTE(shadower): Always switch to root on the OSEv3 nodes.
  39. # openshift-ansible requires an explicit `become`.
  40. ansible_become: true
  41. # # Flannel networking
  42. #osm_cluster_network_cidr: 10.128.0.0/14
  43. #openshift_use_openshift_sdn: false
  44. #openshift_use_flannel: true
  45. #flannel_interface: eth1