module Clusters module Applications class CheckInstallationProgressService < BaseHelmService def execute return unless app.installing? case installation_phase when Gitlab::Kubernetes::Pod::SUCCEEDED on_success when Gitlab::Kubernetes::Pod::FAILED on_failed else check_timeout end rescue KubeException => ke app.make_errored!("Kubernetes error: #{ke.message}") unless app.errored? end private def on_success app.make_installed! ensure remove_installation_pod end def on_failed app.make_errored!(installation_errors || 'Installation silently failed') ensure remove_installation_pod end def check_timeout if timeouted? begin app.make_errored!('Installation timeouted') ensure remove_installation_pod end else ClusterWaitForAppInstallationWorker.perform_in( ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id) end end def timeouted? Time.now.utc - app.updated_at.to_time.utc > ClusterWaitForAppInstallationWorker::TIMEOUT end def remove_installation_pod helm_api.delete_installation_pod!(app) rescue # no-op end def installation_phase helm_api.installation_status(app) end def installation_errors helm_api.installation_log(app) end end end end