Skip to content

Commit

Permalink
fix error in default value for release_name
Browse files Browse the repository at this point in the history
  • Loading branch information
cvstebut authored and gravesm committed Apr 29, 2022
1 parent 5fb1eb0 commit 5a39770
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/helm_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def main():
dependency_update=dict(type="bool", default=False, aliases=["dep_up"]),
disable_hook=dict(type="bool", default=False),
include_crds=dict(type="bool", default=False),
release_name=dict(type="str", default={}, aliases=["name"]),
release_name=dict(type="str", aliases=["name"]),
output_dir=dict(type="path"),
release_namespace=dict(type="str"),
release_values=dict(type="dict", default={}, aliases=["values"]),
Expand Down
1 change: 0 additions & 1 deletion tests/integration/targets/helm/tasks/tests_chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,6 @@
"myValue": "ThisValue"
register: result
when: chart_source is search("test-chart")
# limit test of "show-only" to controlled (local) chart_source

- assert:
that:
Expand Down

0 comments on commit 5a39770

Please sign in to comment.