2018-03-17 18:26:18 +05:30
|
|
|
module Clusters
|
|
|
|
module Applications
|
|
|
|
class InstallService < BaseHelmService
|
|
|
|
def execute
|
|
|
|
return unless app.scheduled?
|
|
|
|
|
|
|
|
begin
|
|
|
|
app.make_installing!
|
|
|
|
helm_api.install(install_command)
|
|
|
|
|
|
|
|
ClusterWaitForAppInstallationWorker.perform_in(
|
|
|
|
ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
|
2018-05-09 12:01:36 +05:30
|
|
|
rescue Kubeclient::HttpError => ke
|
2018-03-17 18:26:18 +05:30
|
|
|
app.make_errored!("Kubernetes error: #{ke.message}")
|
|
|
|
rescue StandardError
|
|
|
|
app.make_errored!("Can't start installation process")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|