summaryrefslogtreecommitdiff
path: root/app/services/clusters/applications/check_installation_progress_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/clusters/applications/check_installation_progress_service.rb')
-rw-r--r--app/services/clusters/applications/check_installation_progress_service.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/services/clusters/applications/check_installation_progress_service.rb b/app/services/clusters/applications/check_installation_progress_service.rb
index 69bd3613cce..bde090eaeec 100644
--- a/app/services/clusters/applications/check_installation_progress_service.rb
+++ b/app/services/clusters/applications/check_installation_progress_service.rb
@@ -48,17 +48,17 @@ module Clusters
end
def remove_installation_pod
- helm_api.delete_installation_pod!(app)
+ helm_api.delete_installation_pod!(install_command.pod_name)
rescue
# no-op
end
def installation_phase
- helm_api.installation_status(app)
+ helm_api.installation_status(install_command.pod_name)
end
def installation_errors
- helm_api.installation_log(app)
+ helm_api.installation_log(install_command.pod_name)
end
end
end