25 lines
795 B
Ruby
25 lines
795 B
Ruby
# frozen_string_literal: true
|
|
|
|
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)
|
|
rescue Kubeclient::HttpError => e
|
|
Rails.logger.error "Kubernetes error: #{e.class.name} #{e.message}"
|
|
app.make_errored!("Kubernetes error.")
|
|
rescue StandardError => e
|
|
Rails.logger.error "Can't start installation process: #{e.class.name} #{e.message}"
|
|
app.make_errored!("Can't start installation process.")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|