Class: Actions::Pulp3::Repository::UploadTag
Instance Method Summary
collapse
#cancel, #cancel!, #combined_tasks, #done?, #external_task, #humanized_state, #new_or_existing_objects, #pulp_tasks, #rescue_external_task, #run, #task_groups
Methods inherited from Abstract
#smart_proxy
Instance Method Details
#invoke_external_task ⇒ Object
9
10
11
12
13
14
|
# File 'app/lib/actions/pulp3/repository/upload_tag.rb', line 9
def invoke_external_task
repo = ::Katello::Repository.find(input[:repository_id])
tag_name = input[:args].dig(:unit_key, :name)
manifest_digest = input[:args].dig(:unit_key, :digest)
output[:pulp_tasks] = [repo.backend_service(smart_proxy).tag_manifest(tag_name, manifest_digest)]
end
|
#plan(repository, smart_proxy, args) ⇒ Object
5
6
7
|
# File 'app/lib/actions/pulp3/repository/upload_tag.rb', line 5
def plan(repository, smart_proxy, args)
plan_self(:repository_id => repository.id, :smart_proxy_id => smart_proxy.id, :args => args)
end
|