2019-03-02 22:35:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
class ClusterUpgradeAppWorker # rubocop:disable Scalability/IdempotentWorker
|
2019-03-02 22:35:43 +05:30
|
|
|
include ApplicationWorker
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
data_consistency :always
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
sidekiq_options retry: 3
|
2019-03-02 22:35:43 +05:30
|
|
|
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
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
def perform(app_name, app_id)
|
|
|
|
find_application(app_name, app_id) do |app|
|
|
|
|
Clusters::Applications::UpgradeService.new(app).execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|