commit | 6c29c00a6b4b2a8b803614fe442405b83d6b21be | [log] [tgz] |
---|---|---|
author | tmeneau <tmeneau@xetus.com> | Fri Oct 27 09:13:06 2017 -0400 |
committer | Petr Michalec <epcim@apealive.net> | Mon Nov 13 17:47:03 2017 +0100 |
tree | bac86a18c9a7266252701799342eb836063ff4f6 | |
parent | b858a00884acb1d6e441a703389b20b56e16eca9 [diff] [blame] |
fix: missing args parameter in helm.release_upgrade function
diff --git a/_modules/helm.py b/_modules/helm.py index c92f4d2..21877a2 100644 --- a/_modules/helm.py +++ b/_modules/helm.py
@@ -350,7 +350,7 @@ return _cmd_and_result( 'upgrade', name, chart_name, '--namespace', namespace, - **kwargs + *args, **kwargs ) def install_chart_dependencies(chart_path, **kwargs):