This commit is contained in:
2024-07-19 22:06:03 -04:00
parent abd86e10e6
commit 76f0489016
54 changed files with 998 additions and 438 deletions

View File

@@ -0,0 +1,18 @@
---
- name: Verify
hosts: all
gather_facts: false
vars_files:
- ../../defaults/main.yml
tasks:
- name: Check Helm version.
command: "{{ helm_bin_path }} version"
changed_when: false
register: helm_verify_version
- name: Verify Helm's version is {{ helm_version }}.
assert:
that:
- helm_version in helm_verify_version.stdout