debian-mirror-gitlab/app/workers/cluster_wait_for_app_installation_worker.rb

21 lines
520 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class ClusterWaitForAppInstallationWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
include ClusterQueue
include ClusterApplications
INTERVAL = 10.seconds
TIMEOUT = 20.minutes
2019-12-26 22:10:19 +05:30
worker_has_external_dependencies!
worker_resource_boundary :cpu
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::CheckInstallationProgressService.new(app).execute
end
end
end