From 2e2ae140db86c2705beb4e96c11758c1120f8788 Mon Sep 17 00:00:00 2001 From: Paul Voss Date: Sat, 18 Feb 2023 18:51:12 +0100 Subject: [PATCH] fix post_renderer arguments breaking the helm deploy_command the post_renderer argument resets the whole helm install command instead of appending the argument --- plugins/modules/helm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/helm.py b/plugins/modules/helm.py index 8c6d5dd14ad..ad80af83c0d 100644 --- a/plugins/modules/helm.py +++ b/plugins/modules/helm.py @@ -554,7 +554,7 @@ def deploy( module.add_cleanup_file(path) if post_renderer: - deploy_command = " --post-renderer=" + post_renderer + deploy_command += " --post-renderer=" + post_renderer if skip_crds: deploy_command += " --skip-crds"