package containerimage

import "github.com/moby/buildkit/exporter/containerimage"

Index

Functions

func New

func New(opt Opt) (exporter.Exporter, error)

New returns a new containerimage exporter instance that supports exporting to an image store and pushing the image to registry. This exporter supports following values in returned kv map: - containerimage.digest - The digest of the root manifest for the image.

func NewDescriptorReference

func NewDescriptorReference(desc ocispecs.Descriptor, release func(context.Context) error) exporter.DescriptorReference

func RemoveInternalLayerAnnotations

func RemoveInternalLayerAnnotations(in map[string]string, oci bool) map[string]string

Types

type Annotations

type Annotations struct {
	Index              map[string]string
	IndexDescriptor    map[string]string
	Manifest           map[string]string
	ManifestDescriptor map[string]string
}

type AnnotationsGroup

type AnnotationsGroup map[string]*Annotations

AnnotationsGroup is a map of annotations keyed by the reference key

func ParseAnnotations

func ParseAnnotations(data map[string][]byte) (AnnotationsGroup, map[string][]byte, error)

func (AnnotationsGroup) Merge

func (AnnotationsGroup) Platform

func (ag AnnotationsGroup) Platform(p *ocispecs.Platform) *Annotations

type ImageCommitOpts

type ImageCommitOpts struct {
	ImageName   string
	RefCfg      cacheconfig.RefConfig
	OCITypes    bool
	Annotations AnnotationsGroup
	Epoch       *time.Time

	ForceInlineAttestations bool // force inline attestations to be attached
}

func (*ImageCommitOpts) EnableForceCompression

func (c *ImageCommitOpts) EnableForceCompression(ctx context.Context, reason string)

func (*ImageCommitOpts) EnableOCITypes

func (c *ImageCommitOpts) EnableOCITypes(ctx context.Context, reason string)

func (*ImageCommitOpts) Load

func (c *ImageCommitOpts) Load(ctx context.Context, opt map[string]string) (map[string]string, error)

type ImageWriter

type ImageWriter struct {
	// contains filtered or unexported fields
}

func NewImageWriter

func NewImageWriter(opt WriterOpt) (*ImageWriter, error)

func (*ImageWriter) Applier

func (ic *ImageWriter) Applier() diff.Applier

func (*ImageWriter) Commit

func (ic *ImageWriter) Commit(ctx context.Context, inp *exporter.Source, sessionID string, opts *ImageCommitOpts) (*ocispecs.Descriptor, error)

func (*ImageWriter) ContentStore

func (ic *ImageWriter) ContentStore() content.Store

func (*ImageWriter) Snapshotter

func (ic *ImageWriter) Snapshotter() snapshot.Snapshotter

type Opt

type Opt struct {
	SessionManager *session.Manager
	ImageWriter    *ImageWriter
	Images         images.Store
	RegistryHosts  docker.RegistryHosts
	LeaseManager   leases.Manager
}

type WriterOpt

type WriterOpt struct {
	Snapshotter  snapshot.Snapshotter
	ContentStore content.Store
	Applier      diff.Applier
	Differ       diff.Comparer
}

Source Files

annotations.go attestations.go export.go opts.go patch.go writer.go

Directories

PathSynopsis
exporter/containerimage/exptypes
exporter/containerimage/image
Version
v0.12.2
Published
Aug 23, 2023
Platform
js/wasm
Imports
55 packages
Last checked
11 seconds ago

Tools for package owners.