package cacheimport

import "github.com/moby/buildkit/cache/remotecache/v1"

Index

Constants

const CacheConfigMediaTypeV0 = "application/vnd.buildkit.cacheconfig.v0"

Functions

func NewCacheKeyStorage

func Parse

func Parse(configJSON []byte, provider DescriptorProvider, t solver.CacheExporterTarget) error

func ParseConfig

func ParseConfig(config CacheConfig, provider DescriptorProvider, t solver.CacheExporterTarget) error

Types

type CacheChains

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

func NewCacheChains

func NewCacheChains() *CacheChains

func (*CacheChains) Add

func (*CacheChains) Marshal

func (c *CacheChains) Marshal() (*CacheConfig, DescriptorProvider, error)

func (*CacheChains) Visit

func (c *CacheChains) Visit(v interface{})

func (*CacheChains) Visited

func (c *CacheChains) Visited(v interface{}) bool

type CacheConfig

type CacheConfig struct {
	Layers  []CacheLayer  `json:"layers,omitempty"`
	Records []CacheRecord `json:"records,omitempty"`
}

type CacheInput

type CacheInput struct {
	Selector  string `json:"selector,omitempty"`
	LinkIndex int    `json:"link"`
}

type CacheLayer

type CacheLayer struct {
	Blob        digest.Digest `json:"blob,omitempty"`
	ParentIndex int           `json:"parent,omitempty"`
}

type CacheRecord

type CacheRecord struct {
	Results []CacheResult  `json:"layers,omitempty"`
	Digest  digest.Digest  `json:"digest,omitempty"`
	Inputs  [][]CacheInput `json:"inputs,omitempty"`
}

type CacheResult

type CacheResult struct {
	LayerIndex int       `json:"layer"`
	CreatedAt  time.Time `json:"createdAt,omitempty"`
}

type DescriptorProvider

type DescriptorProvider map[digest.Digest]DescriptorProviderPair

type DescriptorProviderPair

type DescriptorProviderPair struct {
	Descriptor ocispec.Descriptor
	Provider   content.Provider
}

Source Files

cachestorage.go chains.go doc.go parse.go spec.go utils.go

Version
v0.7.2
Published
Jul 27, 2020
Platform
js/wasm
Imports
14 packages
Last checked
2 minutes ago

Tools for package owners.