File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 25
25
- name : Install kubectl
26
26
import_playbook : kubectl.yaml
27
27
28
- # - name: Install helm
29
- # import_playbook: helm.yaml
28
+ - name : Install helm
29
+ import_playbook : helm.yaml
30
30
31
31
- name : Install sysctl
32
32
import_playbook : sysctl.yaml
Original file line number Diff line number Diff line change 18
18
debug :
19
19
msg : " Home dir is {{ home.stdout }}"
20
20
21
- - name : Extract go1.18.2 .linux-amd64.tar.gz into /usr/local/go
21
+ - name : Extract go1.22.6 .linux-amd64.tar.gz into /usr/local/go
22
22
ansible.builtin.unarchive :
23
- src : https://golang.org /dl/go1.18.2 .linux-amd64.tar.gz
23
+ src : https://go.dev /dl/go1.22.6 .linux-amd64.tar.gz
24
24
dest : /usr/local
25
25
remote_src : yes
26
26
Original file line number Diff line number Diff line change 5
5
6
6
tasks :
7
7
- name : download kubectl
8
- shell : curl -LO https://dl.k8s.io/release/v1.22.9/ bin/linux/amd64/kubectl
8
+ shell : curl -LO " https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/ bin/linux/amd64/kubectl"
9
9
10
10
- name : install kubectl
11
11
shell : install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
You can’t perform that action at this time.
0 commit comments