diff options
author | 2019-06-04 12:47:20 +0200 | |
---|---|---|
committer | 2019-06-04 12:47:20 +0200 | |
commit | 76e017afde67940e80efeaec546c04bef2dadff2 (patch) | |
tree | 885df0233f8bf50b3e921b03dc318f4ef3442c43 /ansible/roles/application | |
parent | 8636d184d6c07df9ef74941a0d4343d61b95c5d4 (diff) |
Replace 'with_items' loop statements with 'loop' keyword
As of Ansible 2.5 'loop' keyword is a recommended way
for looping statements instead of 'with_dict'.
Change-Id: I19e00cc27e13955e2056840fd4ce99841bc824ad
Issue-ID: OOM-1887
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'ansible/roles/application')
-rw-r--r-- | ansible/roles/application/tasks/transfer-helm-charts.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/roles/application/tasks/transfer-helm-charts.yml b/ansible/roles/application/tasks/transfer-helm-charts.yml index 0cd7c02f..5e4240b6 100644 --- a/ansible/roles/application/tasks/transfer-helm-charts.yml +++ b/ansible/roles/application/tasks/transfer-helm-charts.yml @@ -40,5 +40,5 @@ dest: "{{ helm_home_dir.stdout }}/plugins" directory_mode: true mode: 0755 - with_items: "{{ list_of_plugins.files }}" + loop: "{{ list_of_plugins.files }}" when: app_helm_plugins_directory is defined and app_helm_plugins_directory is not none |