Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cluster_provision_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b01f97084246712fb43a7be0f69b41b395ab5b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class ClusterProvisionWorker
  include Sidekiq::Worker
  include ClusterQueue

  def perform(cluster_id)
    Clusters::Cluster.find_by_id(cluster_id).try do |cluster|
      cluster.provider.try do |provider|
        Clusters::Gcp::ProvisionService.new.execute(provider) if cluster.gcp?
      end
    end
  end
end