From: Michal Ptacek Date: Wed, 19 Dec 2018 11:36:09 +0000 (+0000) Subject: Adding ansible helm role X-Git-Tag: 6.0.0-ONAP~376^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=885988bafdfb3a805cd18091b93a9ae416511171;p=oom%2Foffline-installer.git Adding ansible helm role This role is providing handling of helm binary, as of now its very lightweight. Change-Id: I7b9368f31b40d3a818dfdaa9293b0013d963b39c Issue-ID: OOM-1551 Signed-off-by: Michal Ptacek --- diff --git a/ansible/roles/helm/tasks/main.yml b/ansible/roles/helm/tasks/main.yml new file mode 100644 index 00000000..2521ad28 --- /dev/null +++ b/ansible/roles/helm/tasks/main.yml @@ -0,0 +1,7 @@ +--- +- name: Install Helm + copy: + src: "{{ app_data_path }}/downloads/helm" + dest: "{{ helm_bin_dir }}" + remote_src: true + mode: 0755