diff options
author | Milan Verespej <m.verespej@partner.samsung.com> | 2019-02-14 14:15:38 +0100 |
---|---|---|
committer | Milan Verespej <m.verespej@partner.samsung.com> | 2019-02-14 14:18:04 +0100 |
commit | 0e4353b2a3d97ea3b6c4a59664d3d8de956b85fe (patch) | |
tree | dbf14be906922fbac0e7a5aca6cdf93ac88a5934 /ansible | |
parent | 09b5d95763b2e80de02b949e7fb138f887cb0dea (diff) |
Fix typo in helm plugins path
Issue-ID: OOM-1638
Change-Id: I00607f4861d153dc73f9ce516d9bd3b9c490a9cc
Signed-off-by: Milan Verespej <m.verespej@partner.samsung.com>
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/roles/application-install/tasks/pre-install.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/roles/application-install/tasks/pre-install.yml b/ansible/roles/application-install/tasks/pre-install.yml index f87ade33..bf6619b0 100644 --- a/ansible/roles/application-install/tasks/pre-install.yml +++ b/ansible/roles/application-install/tasks/pre-install.yml @@ -37,7 +37,7 @@ - name: Install all helm plugins from {{ app_helm_plugins_directory }} dir copy: src: "{{ item.path }}" - dest: "{{ helm_home_dir.stdout }}"/plugins" + dest: "{{ helm_home_dir.stdout }}/plugins" directory_mode: yes mode: 0755 with_items: "{{ list_of_plugins.files }}" |