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

22 lines
620 B
Ruby
Raw Normal View History

2017-11-02 13:55:02 -04:00
module Clusters
module Applications
class InstallService < BaseHelmService
def execute
return unless app.scheduled?
begin
app.make_installing!
2017-11-07 09:26:14 -05:00
helm_api.install(install_command)
2017-11-02 13:55:02 -04:00
ClusterWaitForAppInstallationWorker.perform_in(
ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
rescue Kubeclient::HttpError => ke
2017-11-02 13:55:02 -04:00
app.make_errored!("Kubernetes error: #{ke.message}")
rescue StandardError => e
app.make_errored!("Can't start installation process. #{e.message}")
2017-11-02 13:55:02 -04:00
end
end
end
end
end