-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaster-play.yml
29 lines (29 loc) · 1002 Bytes
/
master-play.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- hosts: master
tasks:
- name: download helm
unarchive:
src: https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz
dest: /usr/local/bin
remote_src: yes
extra_opts: [--strip-components=1]
# - name: download istioctl
# unarchive:
# src: https://github.com/istio/istio/releases/download/1.7.3/istio-1.7.3-linux-amd64.tar.gz
# dest: /usr/local/bin
# extra_opts:
# - --strip-components=2
# - --wildcards
# - '*/istioctl'
# remote_src: yes
- name: download k9s
ignore_errors: True
unarchive:
src: https://github.com/derailed/k9s/releases/download/v0.26.7/k9s_Linux_x86_64.tar.gz
dest: /usr/local/bin
remote_src: yes
- name: install istioctl
ignore_errors: True
unarchive:
src: https://github.com/istio/istio/releases/download/1.16.1/istioctl-1.16.1-linux-amd64.tar.gz
dest: /usr/local/bin
remote_src: yes