We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c427c62 commit ce23227Copy full SHA for ce23227
kubetest2-tf/data/k8s-ansible/install-k8s-monitoring.yml
@@ -9,6 +9,23 @@
9
changed_when: false
10
delegate_to: "{{ groups['masters'][0] }}"
11
12
+- name: Install Helm
13
+ hosts: masters
14
+ become: yes
15
+ tasks:
16
+ - name: Download Helm install script
17
+ ansible.builtin.get_url:
18
+ url: https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
19
+ dest: /tmp/get_helm.sh
20
+ mode: '0700'
21
+ delegate_to: "{{ groups['masters'][0] }}"
22
+
23
+ - name: Run Helm install script
24
+ ansible.builtin.command: /tmp/get_helm.sh
25
+ args:
26
+ chdir: /tmp
27
28
29
- name: Deploy kube-prometheus-stack to Kubernetes
30
hosts: masters
31
become: yes
0 commit comments