diff options
| author | Gan Huang <ghuang@redhat.com> | 2016-08-09 19:04:40 +0800 | 
|---|---|---|
| committer | Gan Huang <ghuang@redhat.com> | 2016-08-09 19:04:40 +0800 | 
| commit | 2247149ba40538e4e88f94d87694c5f24918041a (patch) | |
| tree | 8a5de17f89fb3ad85b4fe1fb812fe8330ae17dc6 | |
| parent | 9e0e8485638e36f1bacbd8e1c5df134a5a7595f0 (diff) | |
Labeling nodes only
| -rw-r--r-- | utils/src/ooinstall/openshift_ansible.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/utils/src/ooinstall/openshift_ansible.py b/utils/src/ooinstall/openshift_ansible.py index f1e03f8f2..64ee23d8b 100644 --- a/utils/src/ooinstall/openshift_ansible.py +++ b/utils/src/ooinstall/openshift_ansible.py @@ -190,7 +190,8 @@ def write_host(host, role, inventory, schedulable=None):          for variable, value in host.other_variables.iteritems():              facts += " {}={}".format(variable, value)      if host.node_labels: -        facts += ' openshift_node_labels="{}"'.format(host.node_labels) +        if role == 'node': +            facts += ' openshift_node_labels="{}"'.format(host.node_labels)      # Distinguish between three states, no schedulability specified (use default), | 
