Skip to content

Commit fdb15db

Browse files
committedDec 31, 2024
helm_binary
1 parent fabddf9 commit fdb15db

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎roles/clusterlust.openebs/defaults/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
# defaults file for bbaassssiiee.openebs
3+
helm_binary: /usr/local/bin/helm
34
helm_repo_name: openebs
45
helm_repo_url: https://openebs.github.io/openebs
56
helm_chart_name: openebs

‎roles/clusterlust.openebs/tasks/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414

1515
- name: Setup helm repository
1616
kubernetes.core.helm_repository:
17-
binary_path: /usr/local/bin
17+
binary_path: "{{ helm_binary }}"
1818
name: "{{ helm_repo_name }}"
1919
url: "{{ helm_repo_url }}"
2020
state: present
2121

2222
- name: Install the OpenEBS helm chart
2323
kubernetes.core.helm:
24-
binary_path: /usr/local/bin
24+
binary_path: "{{ helm_binary }}"
2525
name: "{{ helm_chart_name }}"
2626
chart_ref: "{{ helm_repo_name }}/{{ helm_chart_name }}"
2727
update_repo_cache: true

0 commit comments

Comments
 (0)
Please sign in to comment.