|
@@ -14,7 +14,10 @@
|
|
|
hostname: "{{ openshift_hostname | default(none) }}"
|
|
|
public_hostname: "{{ openshift_public_hostname | default(none) }}"
|
|
|
deployment_type: "{{ openshift_deployment_type }}"
|
|
|
- dns_ip: "{{ openshift_dns_ip | default(openshift_master_cluster_vip | default(None, true), true) }}"
|
|
|
+ # TODO: Replace this with a lookup or filter plugin.
|
|
|
+ dns_ip: "{{ openshift_dns_ip
|
|
|
+ | default(openshift_master_cluster_vip
|
|
|
+ | default(None if openshift.common.version_greater_than_3_1_or_1_1 | bool else openshift_node_first_master_ip | default(None, true), true), true) }}"
|
|
|
- role: node
|
|
|
local_facts:
|
|
|
annotations: "{{ openshift_node_annotations | default(none) }}"
|