From 98b818bbaf23021c219f48bb873cf3ff7ab45d57 Mon Sep 17 00:00:00 2001 From: Erwan Miran Date: Fri, 17 Aug 2018 16:37:33 +0200 Subject: [PATCH] comply with ansible syntax consistency guideline --- roles/reset/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/reset/tasks/main.yml b/roles/reset/tasks/main.yml index 85977d1f2..fe72c2bec 100644 --- a/roles/reset/tasks/main.yml +++ b/roles/reset/tasks/main.yml @@ -169,7 +169,8 @@ - name: reset | include file with reset tasks specific to the network_plugin if exists include_tasks: "{{ (role_path + '/../network_plugin/' + kube_network_plugin + '/tasks/reset.yml') | realpath }}" - when: kube_network_plugin in ['flannel', 'cilium'] + when: + - kube_network_plugin in ['flannel', 'cilium'] tags: - network