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

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

      ClusterPlatformConfigureWorker.perform_async(cluster.id) if cluster.user?
    end
  end
end