Update Helm to version 3.3.4
[infra/stack/kubernetes.git] / playbooks / roles / postinstall / tasks / configure-jumphost.yml
index 3e0cfb55cf8917fb266f56d1f1e0dd6a40565cb2..a5dc9a6e8d4f50465198bea74004586b07ed9525 100644 (file)
     remote_src: true
     dest: /tmp
 
-- name: Place helm and tiller binaries to /usr/local/bin
+- name: Place helm binaries to /usr/local/bin
   copy:
-    src: "/tmp/linux-amd64/{{ item }}"
+    src: "/tmp/linux-amd64/helm"
     remote_src: true
-    dest: "/usr/local/bin/{{ item }}"
+    dest: "/usr/local/bin/helm"
     owner: root
     group: root
     mode: 0755
-  with_items:
-    - helm
-    - tiller
+
+- name: Place tiller binaries to /usr/local/bin
+  copy:
+    src: "/tmp/linux-amd64/tiller"
+    remote_src: true
+    dest: "/usr/local/bin/tiller"
+    owner: root
+    group: root
+    mode: 0755
+  when: helm_version is version('v3.0.0', '<')
 
 - name: Delete temporary files and folders
   file: