Sha256: d7b5337b817ae7a1c167f62508ae809a0a4d7bc2d66f86afd28c02c7ea2c1d3d
Contents?: true
Size: 1.3 KB
Versions: 26
Compression:
Stored size: 1.3 KB
Contents
module Katello module Pulp3 class DockerManifest < PulpContentUnit include LazyAccessor CONTENT_TYPE = "docker_manifest".freeze def self.content_api PulpContainerClient::ContentManifestsApi.new(Katello::Pulp3::Api::Docker.new(SmartProxy.pulp_primary!).api_client) end def self.ids_for_repository(repo_id) repo = Katello::Pulp3::Repository::Docker.new(Katello::Repository.find(repo_id), SmartProxy.pulp_primary) repo_content_list = repo.content_list repo_content_list.map { |content| content.try(:pulp_href) } end def self.content_unit_list(page_opts) page_opts[:media_type] = "application/vnd.docker.distribution.manifest.v1+json" data_v1 = self.content_api.list(page_opts) page_opts[:media_type] = "application/vnd.docker.distribution.manifest.v2+json" data_v2 = self.content_api.list(page_opts) filtered = {} filtered["count"] = data_v1.count + data_v2.count filtered["results"] = data_v1.results + data_v2.results filtered end def update_model(model) custom_json = {} custom_json['schema_version'], = backend_data['schema_version'] custom_json['digest'], = backend_data['digest'] model.update!(custom_json) end end end end
Version data entries
26 entries across 26 versions & 1 rubygems