This commit is contained in:
Hrankin, Aleksandr (contracted)
2026-02-19 11:34:13 +00:00
commit f243f440c3
191 changed files with 6183 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
```bash
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
```

View File

@@ -0,0 +1,20 @@
---
- name: Download Helm install script
ansible.builtin.get_url:
url: https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
dest: /tmp/get-helm-3.sh
mode: '0755'
- name: Install Helm
ansible.builtin.command: /tmp/get-helm-3.sh
args:
creates: /usr/local/bin/helm
- name: Verify Helm installation
ansible.builtin.command: helm version
register: helm_version_output
changed_when: false
- name: Show Helm version
ansible.builtin.debug:
var: helm_version_output.stdout