|
@@ -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
|
|
|
|