Class: Ci::ResourceGroups::AssignResourceFromResourceGroupWorker
- Inherits:
-
Object
- Object
- Ci::ResourceGroups::AssignResourceFromResourceGroupWorker
- Includes:
- ApplicationWorker, PipelineQueue
- Defined in:
- app/workers/ci/resource_groups/assign_resource_from_resource_group_worker.rb
Overview
This worker is to assign a resource to a pipeline job from a resource group and enqueue the job to be executed by a runner. See docs.gitlab.com/ee/ci/yaml/#resource_group for more information.
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY, ApplicationWorker::SAFE_PUSH_BULK_LIMIT
Constants included from Gitlab::Loggable
Constants included from WorkerAttributes
WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::DEFAULT_DATA_CONSISTENCY_PER_DB, WorkerAttributes::DEFAULT_DEFER_DELAY, WorkerAttributes::LOAD_BALANCED_DATA_CONSISTENCIES, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from Gitlab::Loggable
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(resource_group_id) ⇒ Object
26 27 28 29 30 31 |
# File 'app/workers/ci/resource_groups/assign_resource_from_resource_group_worker.rb', line 26 def perform(resource_group_id) ::Ci::ResourceGroup.find_by_id(resource_group_id).try do |resource_group| Ci::ResourceGroups::AssignResourceFromResourceGroupService.new(resource_group.project, nil) .execute(resource_group) end end |