mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
12 lines
272 B
Ruby
12 lines
272 B
Ruby
class ClusterInstallAppWorker
|
|
include ApplicationWorker
|
|
include ClusterQueue
|
|
include ClusterApplications
|
|
|
|
def perform(app_name, app_id)
|
|
find_application(app_name, app_id) do |app|
|
|
Clusters::Applications::InstallService.new(app).execute
|
|
end
|
|
end
|
|
end
|