diff options
author | 2019-06-07 13:36:43 +0000 | |
---|---|---|
committer | 2019-06-07 13:36:43 +0000 | |
commit | 3cd75cd8d71f471a0217f525bb8e4ed5315266a8 (patch) | |
tree | 17b90e77902e782be322f82099236597adfa6f90 /ansible/roles/application | |
parent | e910a0b67efcf06bcba81bc9acaa3052e7e399f4 (diff) | |
parent | 76e017afde67940e80efeaec546c04bef2dadff2 (diff) |
Merge "Replace 'with_items' loop statements with 'loop' keyword"
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 |