Browse Source

Merge pull request #3200 from ewolinetz/logging_fix_node_labelling

Fixing fluentd node labelling
Eric Wolinetz 8 years ago
parent
commit
d2a0850dec

+ 1 - 1
roles/openshift_logging/tasks/label_node.yaml

@@ -49,4 +49,4 @@
   - unlabel is defined
   - unlabel
   - not ansible_check_mode
-  - label_value.stdout != ""
+  - label in node_labels.stdout

+ 5 - 2
roles/openshift_logging/tasks/start_cluster.yaml

@@ -1,18 +1,21 @@
 ---
 - command: >
-    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get node -o jsonpath='{.items[*].metadata.name}'
+    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get node -o name
   register: fluentd_hosts
   when: "'--all' in openshift_logging_fluentd_hosts"
   check_mode: no
   changed_when: no
 
+- set_fact: openshift_logging_fluentd_hosts={{ fluentd_hosts.stdout_lines | regex_replace('node/', '') }}
+  when: "'--all' in openshift_logging_fluentd_hosts"
+
 - name: start fluentd
   include: label_node.yaml
   vars:
     host: "{{fluentd_host}}"
     label: "{{openshift_logging_fluentd_nodeselector.keys()[0]}}"
     value: "{{openshift_logging_fluentd_nodeselector.values()[0]}}"
-  with_items: "{{(fluentd_hosts.stdout_lines is defined) | ternary(fluentd_hosts.stdout_lines, openshift_logging_fluentd_hosts)}}"
+  with_items: "{{ openshift_logging_fluentd_hosts }}"
   loop_control:
     loop_var: fluentd_host
 

+ 5 - 2
roles/openshift_logging/tasks/stop_cluster.yaml

@@ -1,17 +1,20 @@
 ---
 - command: >
-    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get node -o jsonpath='{.items[*].metadata.name}'
+    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get node -o name
   register: fluentd_hosts
   when: "'--all' in openshift_logging_fluentd_hosts"
   changed_when: no
 
+- set_fact: openshift_logging_fluentd_hosts={{ fluentd_hosts.stdout_lines | regex_replace('node/', '') }}
+  when: "'--all' in openshift_logging_fluentd_hosts"
+
 - name: stop fluentd
   include: label_node.yaml
   vars:
     host: "{{fluentd_host}}"
     label: "{{openshift_logging_fluentd_nodeselector.keys()[0]}}"
     unlabel: True
-  with_items: "{{(fluentd_hosts.stdout_lines is defined) | ternary(fluentd_hosts.stdout_lines, openshift_logging_fluentd_hosts)}}"
+  with_items: "{{ openshift_logging_fluentd_hosts }}"
   loop_control:
     loop_var: fluentd_host