2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
class ClusterInstallAppWorker # rubocop:disable Scalability/IdempotentWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
|
|
|
include ClusterQueue
|
|
|
|
include ClusterApplications
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
worker_has_external_dependencies!
|
2020-06-23 00:09:42 +05:30
|
|
|
loggable_arguments 0
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def perform(app_name, app_id)
|
|
|
|
find_application(app_name, app_id) do |app|
|
|
|
|
Clusters::Applications::InstallService.new(app).execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|