diff options
Diffstat (limited to 'ansible/roles/application/tasks/install-helm2-plugins.yml')
-rw-r--r-- | ansible/roles/application/tasks/install-helm2-plugins.yml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/ansible/roles/application/tasks/install-helm2-plugins.yml b/ansible/roles/application/tasks/install-helm2-plugins.yml deleted file mode 100644 index f1f900e3..00000000 --- a/ansible/roles/application/tasks/install-helm2-plugins.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -- name: Install helm plugins if needed - block: - - name: Get helm dir - command: "{{ helm_bin_dir }}/helm home" - register: helm_home_dir - - name: Ensure that dir for helm plugins exists - file: - path: "{{ helm_home_dir.stdout }}/plugins" - state: directory - mode: 0755 - - name: Register all plugins to be inserted by dir names - find: - paths: "{{ app_helm_plugins_directory }}" - file_type: "directory" - register: list_of_plugins - delegate_to: localhost - - name: Install all helm plugins from {{ app_helm_plugins_directory }} dir - copy: - src: "{{ item.path }}" - dest: "{{ helm_home_dir.stdout }}/plugins" - directory_mode: true - mode: 0755 - loop: "{{ list_of_plugins.files }}" - when: app_helm_plugins_directory is defined and app_helm_plugins_directory is not none |