mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-07-28 18:34:42 +00:00
helm - add support for -set options when running helm install (#546)
helm - add support for -set options when running helm install SUMMARY helm support setting options -set, -set-string, -set-file and -set-json when running helm install ISSUE TYPE Feature Pull Request COMPONENT NAME helm ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis <None> Reviewed-by: Bikouo Aubin <None> Reviewed-by: Mike Graves <mgraves@redhat.com>
This commit is contained in:
1
tests/integration/targets/install_helm/aliases
Normal file
1
tests/integration/targets/install_helm/aliases
Normal file
@@ -0,0 +1 @@
|
||||
disabled
|
||||
4
tests/integration/targets/install_helm/defaults/main.yml
Normal file
4
tests/integration/targets/install_helm/defaults/main.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
helm_version: v3.7.0
|
||||
helm_install_path: /tmp/helm
|
||||
helm_default_archive_name: "helm-{{ helm_version }}-{{ ansible_system | lower }}-amd64.tar.gz"
|
||||
15
tests/integration/targets/install_helm/tasks/main.yml
Normal file
15
tests/integration/targets/install_helm/tasks/main.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
- name: Init Helm folders
|
||||
file:
|
||||
path: "{{ helm_install_path }}"
|
||||
state: directory
|
||||
|
||||
- name: Unarchive Helm binary
|
||||
unarchive:
|
||||
src: "https://get.helm.sh/{{ helm_archive_name | default(helm_default_archive_name) }}"
|
||||
dest: "{{ helm_install_path }}"
|
||||
remote_src: yes
|
||||
retries: 10
|
||||
delay: 5
|
||||
register: result
|
||||
until: result is not failed
|
||||
Reference in New Issue
Block a user