gitlab-org--gitlab-foss/app/services/clusters/applications/install_service.rb

25 lines
692 B
Ruby

module Clusters
module Applications
class InstallService < BaseHelmService
def execute
return unless app.scheduled?
begin
helm_api.install(app)
if app.make_installing
ClusterWaitForAppInstallationWorker.perform_in(
ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
else
app.make_errored!("Failed to update app record; #{app.errors}")
end
rescue KubeException => ke
app.make_errored!("Kubernetes error: #{ke.message}")
rescue StandardError
app.make_errored!("Can't start installation process")
end
end
end
end
end