Skip to content

Commit 137101f

Browse files
committed
feat(deploy-config): Add permissions to helm download
1 parent 2459396 commit 137101f

File tree

1 file changed

+6
-0
lines changed
  • test/deploy/linux/kubernetes/minikube/roles/prepare/tasks

1 file changed

+6
-0
lines changed

test/deploy/linux/kubernetes/minikube/roles/prepare/tasks/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@
7878
- name: Extract the Helm archive
7979
shell: 'tar -xvf helm-v3.8.0-linux-amd64.tar.gz'
8080

81+
# Adjust the permissions as needed
82+
- name: Give all permissions to the Helm binary file
83+
shell: |
84+
chmod -R 777 /home/ec2-user/linux-amd64
85+
become: true
86+
8187
- name: Move the Helm executable to a system directory
8288
shell: mv linux-amd64/helm /usr/local/bin/
8389
become: true

0 commit comments

Comments
 (0)