diff --git a/tests/apitests/python/library/helm.py b/tests/apitests/python/library/helm.py index 0006688ba..e102c0082 100644 --- a/tests/apitests/python/library/helm.py +++ b/tests/apitests/python/library/helm.py @@ -22,7 +22,7 @@ def helm_save(chart_archive, harbor_server, project, repo_name): base.run_command(command) def helm_push(harbor_server, project, repo_name, version): - command = ["helm3", "chart","push", harbor_server+"/"+project+"/"+repo_name+":"+version] + command = ["helm3", "chart", "push", harbor_server+"/"+project+"/"+repo_name+":"+version] ret = base.run_command(command) return ret @@ -39,7 +39,7 @@ def helm2_add_repo(helm_repo_name, harbor_url, project, username, password, expe def helm2_push(helm_repo_name, chart_file, project, username, password): get_chart_file(chart_file) - command = ["helm2", "push", "--username=" + username, "--password=" + password, chart_file.split('/')[-1], helm_repo_name] + command = ["helm2", "cm-push", "--username=" + username, "--password=" + password, chart_file.split('/')[-1], helm_repo_name] base.run_command(command) def helm2_repo_update(): diff --git a/tests/resources/Helm-Util.robot b/tests/resources/Helm-Util.robot index d08ddce3b..ac7afffc3 100644 --- a/tests/resources/Helm-Util.robot +++ b/tests/resources/Helm-Util.robot @@ -34,7 +34,7 @@ Helm Repo Push ${current_dir}= Run pwd Run cd ${current_dir} Run wget ${harbor_chart_file_url} - Wait Unitl Command Success ${helm_cmd} push --username=${user} --password=${pwd} ${chart_filename} ${helm_repo_name} + Wait Unitl Command Success ${helm_cmd} cm-push --username=${user} --password=${pwd} ${chart_filename} ${helm_repo_name} Helm Chart Push [Arguments] ${ip} ${user} ${pwd} ${chart_file} ${archive} ${project} ${repo_name} ${verion}