generated from ansible-collections/collection_template
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Align `helmdiff_check` behavior with the `deploy` function SUMMARY Align helmdiff_check behavior with the deploy function Fixes #638 helmdiff_check respects set_values parameter Fixes #669 helmdiff_check command line parameters sequence aligned to the deploy function ISSUE TYPE Bugfix Pull Request COMPONENT NAME kubernetes.core.helm Reviewed-by: Mike Graves <mgraves@redhat.com>
- Loading branch information
Showing
4 changed files
with
63 additions
and
14 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
changelogs/fragments/20240117-fix-helm-diff-cmd-line-rendering.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
bugfixes: | ||
- align `helmdiff_check()` function commandline rendering with the `deploy()` function (https://github.com/ansible-collections/kubernetes.core/pull/670). | ||
- integrations test helm_kubeconfig - set helm version to v3.10.3 to avoid incompatability with new bitnami charts (https://github.com/ansible-collections/kubernetes.core/pull/670). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
--- | ||
- name: Test helm with in-memory kubeconfig | ||
include_tasks: "from_in_memory_kubeconfig.yml" | ||
loop_control: | ||
loop_var: test_helm_version | ||
with_items: | ||
- "v3.10.3" | ||
|
||
- name: Test helm with custom kubeconfig and validate_certs=false | ||
include_tasks: "from_kubeconfig_with_validate_certs.yml" | ||
loop_control: | ||
loop_var: test_helm_version | ||
with_items: | ||
- "v3.10.3" | ||
- "v3.8.2" | ||
|
||
- name: Test helm with custom kubeconfig and ca_cert | ||
include_tasks: "from_kubeconfig_with_cacert.yml" | ||
loop_control: | ||
loop_var: test_helm_version | ||
with_items: | ||
- "v3.5.1" | ||
- "v3.4.2" | ||
- "v3.10.3" |