mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
15 lines
394 B
Ruby
15 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ClusterConfigureIstioWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
include ClusterQueue
|
|
|
|
worker_has_external_dependencies!
|
|
|
|
def perform(cluster_id)
|
|
Clusters::Cluster.find_by_id(cluster_id).try do |cluster|
|
|
Clusters::Kubernetes::ConfigureIstioIngressService.new(cluster: cluster).execute
|
|
end
|
|
end
|
|
end
|