summaryrefslogtreecommitdiff
path: root/app/workers/wait_for_cluster_creation_worker.rb
blob: 19cdb279aaaf929edae868f7febb2f9ad0a7741e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class WaitForClusterCreationWorker
  include ApplicationWorker
  include ClusterQueue

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