diff --git a/.ci/helm.py b/.ci/helm.py index 2bf02bf..b1ff9e4 100755 --- a/.ci/helm.py +++ b/.ci/helm.py @@ -82,7 +82,7 @@ def deploy_chart(self, host: str, username: str, password: str, release_name: st kubeconfig_path, "--repo", host, "--username", username, "--password", password, "-f", helm_values_path, "-i"] - print(f" Run helm upgrade {release_name} {chart_name} --namespace {namespace} --version {version if version else ''}" + print(f" potter-hub.deploy_chart(): Run helm upgrade {release_name} {chart_name} --namespace {namespace} --version {version if version else ''}" f" --kubeconfig {kubeconfig_path} --repo {host} --username {username} --password *** -f {helm_values_path} -i\n") result = subprocess.run(command, capture_output=True, text=True) print(result.stdout)