We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fabddf9 commit fdb15dbCopy full SHA for fdb15db
roles/clusterlust.openebs/defaults/main.yml
@@ -1,5 +1,6 @@
1
---
2
# defaults file for bbaassssiiee.openebs
3
+helm_binary: /usr/local/bin/helm
4
helm_repo_name: openebs
5
helm_repo_url: https://openebs.github.io/openebs
6
helm_chart_name: openebs
roles/clusterlust.openebs/tasks/main.yml
@@ -14,14 +14,14 @@
14
15
- name: Setup helm repository
16
kubernetes.core.helm_repository:
17
- binary_path: /usr/local/bin
+ binary_path: "{{ helm_binary }}"
18
name: "{{ helm_repo_name }}"
19
url: "{{ helm_repo_url }}"
20
state: present
21
22
- name: Install the OpenEBS helm chart
23
kubernetes.core.helm:
24
25
name: "{{ helm_chart_name }}"
26
chart_ref: "{{ helm_repo_name }}/{{ helm_chart_name }}"
27
update_repo_cache: true
0 commit comments