diff options
author | Michal Ptacek <m.ptacek@partner.samsung.com> | 2018-12-19 11:36:09 +0000 |
---|---|---|
committer | Michal Ptacek <m.ptacek@partner.samsung.com> | 2018-12-19 11:38:40 +0000 |
commit | 885988bafdfb3a805cd18091b93a9ae416511171 (patch) | |
tree | 22621cba6e7167f4f275b32bc9c7a7597be9267b /ansible | |
parent | d21977bd82508b90c8bfda24111ac4a693256e70 (diff) |
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 <m.ptacek@partner.samsung.com>
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/roles/helm/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
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 |