Skip to content

Commit df02a66

Browse files
committed
Moved helm install
1 parent 370b188 commit df02a66

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

ansible/roles/k3s/tasks/main.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,20 @@
4141
- name: Installing helm
4242
unarchive:
4343
src: https://get.helm.sh/helm-v3.11.0-linux-amd64.tar.gz
44-
dest: /root/bin
44+
dest: /usr/local/bin
4545
extra_opts: "--strip-components=1"
4646
owner: root
4747
group: root
4848
mode: 0755
4949
remote_src: true
5050

51+
- name: Add helm symlink in root path
52+
ansible.builtin.file:
53+
src: /usr/local/bin/helm
54+
dest: "/root/bin/helm"
55+
state: link
56+
owner: root
57+
5158
- name: k9s install
5259
ansible.builtin.include_role:
5360
name: k9s

0 commit comments

Comments
 (0)