Browse Source

Merge pull request #2275 from ganhuang/bz#1353163

a-o-i: Labeling nodes only
Scott Dodson 8 years ago
parent
commit
62f64172e8
1 changed files with 2 additions and 1 deletions
  1. 2 1
      utils/src/ooinstall/openshift_ansible.py

+ 2 - 1
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),