diff options
Diffstat (limited to 'helm/plugin/workflows.py')
-rw-r--r-- | helm/plugin/workflows.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/helm/plugin/workflows.py b/helm/plugin/workflows.py index a37293e..c21f27c 100644 --- a/helm/plugin/workflows.py +++ b/helm/plugin/workflows.py @@ -50,11 +50,11 @@ def upgrade(node_instance_id, config_json, config_url, config_format, else: raise NonRecoverableError("Unable to get Json config input") -kwargs['chart_version'] = str(chartVersion) -kwargs['chart_repo'] = str(chartRepo) -operation_args = {'operation': 'upgrade', } -operation_args['kwargs'] = kwargs -node_instance.execute_operation(**operation_args) + kwargs['chart_version'] = str(chartVersion) + kwargs['chart_repo'] = str(chartRepo) + operation_args = {'operation': 'upgrade', } + operation_args['kwargs'] = kwargs + node_instance.execute_operation(**operation_args) @workflow |