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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
379 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
2023-01-13 00:05:48 +05:30
# DEPRECATED
#
# To be removed by https://gitlab.com/gitlab-org/gitlab/-/issues/366573
2020-04-08 14:13:33 +05:30
class ClusterConfigureIstioWorker # rubocop:disable Scalability/IdempotentWorker
2020-03-13 15:44:24 +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
2020-03-13 15:44:24 +05:30
include ClusterQueue
worker_has_external_dependencies!
2023-01-13 00:05:48 +05:30
def perform(cluster_id); end
2020-03-13 15:44:24 +05:30
end