Sha256: 5b87a132f75a386c20f27b51adb0246d618d21d5b968f07fbe6879c2999cbbac

Contents?: true

Size: 1.19 KB

Versions: 9

Compression:

Stored size: 1.19 KB

Contents

module Katello
  module Pulp3
    class DockerManifest < PulpContentUnit
      include LazyAccessor
      CONTENT_TYPE = "docker_manifest".freeze
      PULPCORE_CONTENT_TYPE = "container.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',
                                  'application/vnd.docker.distribution.manifest.v2+json',
                                  'application/vnd.oci.image.manifest.v1+json']
        self.content_api.list(page_opts)
      end

      def self.generate_model_row(unit)
        {
          schema_version: unit['schema_version'],
          digest: unit['digest'],
          pulp_id: unit[unit_identifier]
        }
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
katello-4.12.1 app/services/katello/pulp3/docker_manifest.rb
katello-4.12.0 app/services/katello/pulp3/docker_manifest.rb
katello-4.12.0.rc3 app/services/katello/pulp3/docker_manifest.rb
katello-4.12.0.rc2 app/services/katello/pulp3/docker_manifest.rb
katello-4.12.0.rc1 app/services/katello/pulp3/docker_manifest.rb
katello-4.11.1 app/services/katello/pulp3/docker_manifest.rb
katello-4.11.0 app/services/katello/pulp3/docker_manifest.rb
katello-4.11.0.rc2 app/services/katello/pulp3/docker_manifest.rb
katello-4.11.0.rc1 app/services/katello/pulp3/docker_manifest.rb