diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-11-24 14:06:12 -0500 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-11-24 14:06:12 -0500 |
commit | 42232eb59cc3c6ae5d4733b6655add0aff23217b (patch) | |
tree | 0d3de9588c0fa5c4ea764b2b3ae93d13dea19b8f /roles/openshift_facts | |
parent | cb3da200563684c15d3a65cb2bf3958b9a34b249 (diff) | |
download | openshift-42232eb59cc3c6ae5d4733b6655add0aff23217b.tar.gz openshift-42232eb59cc3c6ae5d4733b6655add0aff23217b.tar.bz2 openshift-42232eb59cc3c6ae5d4733b6655add0aff23217b.tar.xz openshift-42232eb59cc3c6ae5d4733b6655add0aff23217b.zip |
Conditionally set the nodeIP
Diffstat (limited to 'roles/openshift_facts')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 6006bfa9d..b60e42c71 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -1074,7 +1074,7 @@ class OpenShiftFacts(object): if 'node' in roles: node = dict(labels={}, annotations={}, portal_net='172.30.0.0/16', - iptables_sync_period='5s') + iptables_sync_period='5s', set_node_ip=False) defaults['node'] = node return defaults |