diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-11-27 12:22:02 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-11-27 14:08:58 -0500 |
commit | 73bf3e7137d80ba5b225108f39240c43d385a1ea (patch) | |
tree | 79c46afb0932d1c3fa56c476aa8f586aaf15db8e /roles/openshift_node/defaults | |
parent | e7e699a4201754fe9ccd1b9adffad5be5fff18b3 (diff) | |
download | openshift-73bf3e7137d80ba5b225108f39240c43d385a1ea.tar.gz openshift-73bf3e7137d80ba5b225108f39240c43d385a1ea.tar.bz2 openshift-73bf3e7137d80ba5b225108f39240c43d385a1ea.tar.xz openshift-73bf3e7137d80ba5b225108f39240c43d385a1ea.zip |
Combine openshift_node and openshift_node_dnsmasq
This commit combines these two roles. This will
prevent openshift_node_facts from running twice.
Diffstat (limited to 'roles/openshift_node/defaults')
-rw-r--r-- | roles/openshift_node/defaults/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/openshift_node/defaults/main.yml b/roles/openshift_node/defaults/main.yml index 62208c155..5a0c09f5c 100644 --- a/roles/openshift_node/defaults/main.yml +++ b/roles/openshift_node/defaults/main.yml @@ -1,6 +1,13 @@ --- openshift_node_debug_level: "{{ debug_level | default(2) }}" +openshift_node_dnsmasq_install_network_manager_hook: true + +# lo must always be present in this list or dnsmasq will conflict with +# the node's dns service. +openshift_node_dnsmasq_except_interfaces: +- lo + r_openshift_node_firewall_enabled: "{{ os_firewall_enabled | default(True) }}" r_openshift_node_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}" |