summaryrefslogtreecommitdiff
path: root/app/workers/cluster_provision_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/cluster_provision_worker.rb')
-rw-r--r--app/workers/cluster_provision_worker.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/workers/cluster_provision_worker.rb b/app/workers/cluster_provision_worker.rb
index 59de7903c1c..3d5894b73ec 100644
--- a/app/workers/cluster_provision_worker.rb
+++ b/app/workers/cluster_provision_worker.rb
@@ -9,6 +9,8 @@ class ClusterProvisionWorker
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