summaryrefslogtreecommitdiff
path: root/app/workers/cluster_configure_worker.rb
blob: 22681157b62f5a246bbcbf87986cdc9bf15b3710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class ClusterConfigureWorker
  include ApplicationWorker
  include ClusterQueue

  def perform(cluster_id)
    Clusters::Cluster.find_by_id(cluster_id).try do |cluster|
      if cluster.project_type? || Feature.disabled?(:ci_preparing_state, default_enabled: true)
        Clusters::RefreshService.create_or_update_namespaces_for_cluster(cluster)
      end
    end
  end
end