debian-mirror-gitlab/app/workers/cluster_wait_for_ingress_ip_address_worker.rb
2019-12-26 22:10:19 +05:30

15 lines
367 B
Ruby

# frozen_string_literal: true
class ClusterWaitForIngressIpAddressWorker
include ApplicationWorker
include ClusterQueue
include ClusterApplications
worker_has_external_dependencies!
def perform(app_name, app_id)
find_application(app_name, app_id) do |app|
Clusters::Applications::CheckIngressIpAddressService.new(app).execute
end
end
end