2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Clusters
|
|
|
|
module Applications
|
2019-07-07 11:18:12 +05:30
|
|
|
class CreateService < Clusters::Applications::BaseService
|
2018-12-13 13:39:08 +05:30
|
|
|
private
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def worker_class(application)
|
|
|
|
application.updateable? ? ClusterUpgradeAppWorker : ClusterInstallAppWorker
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def builder
|
2019-07-31 22:56:46 +05:30
|
|
|
cluster.public_send(:"application_#{application_name}") || # rubocop:disable GitlabSecurity/PublicSend
|
|
|
|
cluster.public_send(:"build_application_#{application_name}") # rubocop:disable GitlabSecurity/PublicSend
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|