From 885988bafdfb3a805cd18091b93a9ae416511171 Mon Sep 17 00:00:00 2001 From: Michal Ptacek Date: Wed, 19 Dec 2018 11:36:09 +0000 Subject: 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 --- ansible/roles/helm/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ansible/roles/helm/tasks/main.yml (limited to 'ansible/roles') 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 -- cgit 1.2.3-korg