diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-12-03 14:11:39 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-12-03 14:11:39 -0500 |
commit | 64d40b71f3b52b69999831a7d6e13916ec5ad1cd (patch) | |
tree | 9087a58294e551046962e1ea267c165a5a315290 /roles/openshift_node/tasks | |
parent | 15aa17c6162c036f6b164f225d2a071c138af965 (diff) | |
parent | 192ccc8e6e6f465351828f32e9dc43b840897b67 (diff) | |
download | openshift-64d40b71f3b52b69999831a7d6e13916ec5ad1cd.tar.gz openshift-64d40b71f3b52b69999831a7d6e13916ec5ad1cd.tar.bz2 openshift-64d40b71f3b52b69999831a7d6e13916ec5ad1cd.tar.xz openshift-64d40b71f3b52b69999831a7d6e13916ec5ad1cd.zip |
Merge pull request #1012 from abutcher/dns-ip-override
Refactor dns options and facts
Diffstat (limited to 'roles/openshift_node/tasks')
-rw-r--r-- | roles/openshift_node/tasks/main.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml index 36bcc1a90..29e7eb532 100644 --- a/roles/openshift_node/tasks/main.yml +++ b/roles/openshift_node/tasks/main.yml @@ -1,12 +1,6 @@ --- # TODO: allow for overriding default ports where possible - fail: - msg: This role requres that osn_cluster_dns_domain is set - when: osn_cluster_dns_domain is not defined or not osn_cluster_dns_domain -- fail: - msg: This role requres that osn_cluster_dns_ip is set - when: osn_cluster_dns_ip is not defined or not osn_cluster_dns_ip -- fail: msg: "SELinux is disabled, This deployment type requires that SELinux is enabled." when: (not ansible_selinux or ansible_selinux.status != 'enabled') and deployment_type in ['enterprise', 'online', 'atomic-enterprise', 'openshift-enterprise'] @@ -20,6 +14,7 @@ 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) }}" - role: node local_facts: annotations: "{{ openshift_node_annotations | default(none) }}" |