try and change this
This commit is contained in:
parent
e9f3869973
commit
7176b47209
3 changed files with 7 additions and 3 deletions
|
@ -87,7 +87,7 @@
|
|||
openshift_cluster_url: "{{os_url}}",
|
||||
openshift_master_ha: false,
|
||||
openshift_debug_level: 2,
|
||||
openshift_deployment_type: "origin",
|
||||
openshift_deployment_type: "openshift-enterprise",
|
||||
openshift_cluster_url: "{{ os_url}}",
|
||||
openshift_app_subdomain: "{{ os_app_url }}",
|
||||
when: env == 'staging',
|
||||
|
|
|
@ -43,7 +43,7 @@ openshift_release: "v1.5.0"
|
|||
# Possible options:
|
||||
# origin
|
||||
# openshift-enterprise
|
||||
openshift_deployment_type: origin
|
||||
deployment_type: origin
|
||||
|
||||
# Install the OpenShift App Examples (value should be "true" or "false")
|
||||
openshift_ansible_install_examples: false
|
||||
|
|
|
@ -33,7 +33,7 @@ ansible_become=yes
|
|||
debug_level={{openshift_debug_level}}
|
||||
|
||||
# Specify the deployment type. Valid values are origin and openshift-enterprise.
|
||||
openshift_deployment_type={{openshift_deployment_type}}
|
||||
deployment_type={{openshift_deployment_type}}
|
||||
|
||||
# Specify the generic release of OpenShift to install. This is used mainly just during installation, after which we
|
||||
# rely on the version running on the first master. Works best for containerized installs where we can usually
|
||||
|
@ -235,7 +235,11 @@ openshift_master_cluster_public_hostname={{openshift_cluster_url}}
|
|||
#osm_api_server_args={'max-requests-inflight': ['400']}
|
||||
|
||||
# default subdomain to use for exposed routes
|
||||
{% if openshift_app_subdomain is defined %}
|
||||
{% if openshift_app_subdomain %}
|
||||
openshift_master_default_subdomain={{openshift_app_subdomain}}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
# additional cors origins
|
||||
#osm_custom_cors_origins=['foo.example.com', 'bar.example.com']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue