diff options
author | Andrew Butcher <abutcher@redhat.com> | 2015-10-26 15:20:35 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2015-11-06 16:35:09 -0500 |
commit | 3d87d37f53712fbc7cadbf0829743d9a97e93ad1 (patch) | |
tree | 92efd57c773dece8151cfc0c44309b50c9ae32b8 /roles/openshift_facts/library | |
parent | f1f22218739982f768e36cc2695a1b4ab5561ca7 (diff) | |
download | openshift-3d87d37f53712fbc7cadbf0829743d9a97e93ad1.tar.gz openshift-3d87d37f53712fbc7cadbf0829743d9a97e93ad1.tar.bz2 openshift-3d87d37f53712fbc7cadbf0829743d9a97e93ad1.tar.xz openshift-3d87d37f53712fbc7cadbf0829743d9a97e93ad1.zip |
New `iptablesSyncPeriod` field in node configuration
Diffstat (limited to 'roles/openshift_facts/library')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 33aca987d..ea2c45e6c 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -961,7 +961,8 @@ class OpenShiftFacts(object): defaults['master'] = master if 'node' in roles: - node = dict(labels={}, annotations={}, portal_net='172.30.0.0/16') + node = dict(labels={}, annotations={}, portal_net='172.30.0.0/16', + iptables_sync_period='5s') defaults['node'] = node return defaults |