Skip to content

Commit

Permalink
fix post_renderer arguments breaking the helm deploy_command
Browse files Browse the repository at this point in the history
the post_renderer argument resets the whole helm install command
instead of appending the argument
  • Loading branch information
pauvos committed Feb 18, 2023
1 parent 31c1ccf commit 2e2ae14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2e2ae14

Please sign in to comment.