Browse Source

GlusterFS: Label on Openshift node name

Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
Jose A. Rivera 8 years ago
parent
commit
fb96b04bdb
1 changed files with 1 additions and 3 deletions
  1. 1 3
      roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml

+ 1 - 3
roles/openshift_storage_glusterfs/tasks/glusterfs_deploy.yml

@@ -61,13 +61,11 @@
 
 - name: Label GlusterFS nodes
   oc_label:
-    name: "{{ glusterfs_host }}"
+    name: "{{ hostvars[item].openshift.common.hostname }}"
     kind: node
     state: add
     labels: "{{ glusterfs_nodeselector | oo_dict_to_list_of_dict }}"
   with_items: "{{ glusterfs_nodes | default([]) }}"
-  loop_control:
-    loop_var: glusterfs_host
 
 - name: Copy GlusterFS DaemonSet template
   copy: