diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-08-08 18:55:17 +0200 |
---|---|---|
committer | Luke Meyer <lmeyer@redhat.com> | 2017-08-10 14:12:43 -0400 |
commit | c84f11d71f89ae9ac0c93f3da4f74c742346612e (patch) | |
tree | 4ff4892c46abb4c732e7c4b83cf93020cb3916ff /roles/openshift_logging_fluentd | |
parent | 6528031d5ec24d62ffe28687bb134bc1237f0210 (diff) | |
download | openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.tar.gz openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.tar.bz2 openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.tar.xz openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.zip |
Fix syntax for when statement
Without that, playbook runs print warnings such as this:
[WARNING]: when statements should not include jinja2 templating
delimiters such as {{ }} or {% %}. Found: {{ g_etcd_hosts is not
defined and g_new_etcd_hosts is not
defined}}
Diffstat (limited to 'roles/openshift_logging_fluentd')
-rw-r--r-- | roles/openshift_logging_fluentd/tasks/main.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_logging_fluentd/tasks/main.yaml b/roles/openshift_logging_fluentd/tasks/main.yaml index 9dfc6fc86..74b4d7db4 100644 --- a/roles/openshift_logging_fluentd/tasks/main.yaml +++ b/roles/openshift_logging_fluentd/tasks/main.yaml @@ -1,7 +1,7 @@ --- - fail: msg: Only one Fluentd nodeselector key pair should be provided - when: "{{ openshift_logging_fluentd_nodeselector.keys() | count }} > 1" + when: openshift_logging_fluentd_nodeselector.keys() | count > 1 - fail: msg: Application logs destination is required |