2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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-11-08 19:23:39 +05:30
|
|
|
rescue Kubeclient::HttpError
|
|
|
|
app.make_errored!("Kubernetes error.")
|
2018-03-17 18:26:18 +05:30
|
|
|
rescue StandardError
|
2018-11-08 19:23:39 +05:30
|
|
|
app.make_errored!("Can't start installation process.")
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|