summaryrefslogtreecommitdiff
path: root/app/workers/cluster_provision_worker.rb
blob: 1ab4de3b6479b6c82077acfc1f03e9d3ad8211ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class ClusterProvisionWorker
  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::ProvisionService.new.execute(provider) if cluster.gcp?
      end
    end
  end
end