Class: Ci::ResourceGroups::AssignResourceFromResourceGroupWorker

Inherits:
Object
  • Object
show all
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

Gitlab::Loggable::ANONYMOUS

Constants included from WorkerAttributes

WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::DEFAULT_DEFER_DELAY, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES

Instance Method Summary collapse

Methods included from Gitlab::Loggable

#build_structured_payload

Methods included from Gitlab::SidekiqVersioning::Worker

#job_version

Methods included from WorkerContext

#with_context

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