You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
YAML
18 lines
373 B
YAML
2 years ago
|
- name: Add Balto key
|
||
|
apt_key:
|
||
|
url: https://baltocdn.com/helm/signing.asc
|
||
|
state: present
|
||
|
|
||
|
- name: Add Balto Repository
|
||
|
apt_repository:
|
||
|
repo: "deb https://baltocdn.com/helm/stable/debian/ all main"
|
||
|
state: present
|
||
|
filename: kubernetes
|
||
|
update_cache: yes
|
||
|
|
||
|
- name: Install helm
|
||
|
package:
|
||
|
name:
|
||
|
- helm
|
||
|
state: latest
|