2018-04-19 13:07:27 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-04-03 02:23:23 -04:00
|
|
|
"encoding/json"
|
2018-04-19 13:07:27 -04:00
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2019-04-03 02:23:23 -04:00
|
|
|
"github.com/containerd/containerd/content"
|
|
|
|
contentlocal "github.com/containerd/containerd/content/local"
|
2018-04-19 13:07:27 -04:00
|
|
|
controlapi "github.com/moby/buildkit/api/services/control"
|
|
|
|
"github.com/moby/buildkit/client/llb"
|
2019-04-03 02:23:23 -04:00
|
|
|
"github.com/moby/buildkit/client/ociindex"
|
2018-04-19 13:07:27 -04:00
|
|
|
"github.com/moby/buildkit/identity"
|
|
|
|
"github.com/moby/buildkit/session"
|
2019-04-03 02:23:23 -04:00
|
|
|
sessioncontent "github.com/moby/buildkit/session/content"
|
2018-04-19 13:07:27 -04:00
|
|
|
"github.com/moby/buildkit/session/filesync"
|
|
|
|
"github.com/moby/buildkit/session/grpchijack"
|
|
|
|
"github.com/moby/buildkit/solver/pb"
|
2018-08-20 13:59:40 -04:00
|
|
|
"github.com/moby/buildkit/util/entitlements"
|
2019-04-03 02:23:23 -04:00
|
|
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
2018-04-19 13:07:27 -04:00
|
|
|
opentracing "github.com/opentracing/opentracing-go"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/sirupsen/logrus"
|
2018-10-05 05:05:42 -04:00
|
|
|
fstypes "github.com/tonistiigi/fsutil/types"
|
2018-04-19 13:07:27 -04:00
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SolveOpt struct {
|
2019-04-24 14:26:58 -04:00
|
|
|
Exports []ExportEntry
|
|
|
|
LocalDirs map[string]string
|
|
|
|
SharedKey string
|
|
|
|
Frontend string
|
|
|
|
FrontendAttrs map[string]string
|
2020-04-16 11:06:33 -04:00
|
|
|
FrontendInputs map[string]llb.State
|
2019-04-24 14:26:58 -04:00
|
|
|
CacheExports []CacheOptionsEntry
|
|
|
|
CacheImports []CacheOptionsEntry
|
|
|
|
Session []session.Attachable
|
|
|
|
AllowedEntitlements []entitlements.Entitlement
|
|
|
|
SharedSession *session.Session // TODO: refactor to better session syncing
|
|
|
|
SessionPreInitialized bool // TODO: refactor to better session syncing
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
|
|
|
|
2019-04-03 02:23:23 -04:00
|
|
|
type ExportEntry struct {
|
|
|
|
Type string
|
|
|
|
Attrs map[string]string
|
2019-09-20 20:42:32 -04:00
|
|
|
Output func(map[string]string) (io.WriteCloser, error) // for ExporterOCI and ExporterDocker
|
|
|
|
OutputDir string // for ExporterLocal
|
2019-04-03 02:23:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type CacheOptionsEntry struct {
|
|
|
|
Type string
|
|
|
|
Attrs map[string]string
|
|
|
|
}
|
|
|
|
|
2018-04-19 13:07:27 -04:00
|
|
|
// Solve calls Solve on the controller.
|
|
|
|
// def must be nil if (and only if) opt.Frontend is set.
|
|
|
|
func (c *Client) Solve(ctx context.Context, def *llb.Definition, opt SolveOpt, statusChan chan *SolveStatus) (*SolveResponse, error) {
|
|
|
|
defer func() {
|
|
|
|
if statusChan != nil {
|
|
|
|
close(statusChan)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if opt.Frontend == "" && def == nil {
|
|
|
|
return nil, errors.New("invalid empty definition")
|
|
|
|
}
|
|
|
|
if opt.Frontend != "" && def != nil {
|
|
|
|
return nil, errors.Errorf("invalid definition for frontend %s", opt.Frontend)
|
|
|
|
}
|
|
|
|
|
2018-08-20 13:59:40 -04:00
|
|
|
return c.solve(ctx, def, nil, opt, statusChan)
|
|
|
|
}
|
|
|
|
|
|
|
|
type runGatewayCB func(ref string, s *session.Session) error
|
|
|
|
|
|
|
|
func (c *Client) solve(ctx context.Context, def *llb.Definition, runGateway runGatewayCB, opt SolveOpt, statusChan chan *SolveStatus) (*SolveResponse, error) {
|
|
|
|
if def != nil && runGateway != nil {
|
|
|
|
return nil, errors.New("invalid with def and cb")
|
|
|
|
}
|
|
|
|
|
2018-04-19 13:07:27 -04:00
|
|
|
syncedDirs, err := prepareSyncedDirs(def, opt.LocalDirs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ref := identity.NewID()
|
|
|
|
eg, ctx := errgroup.WithContext(ctx)
|
|
|
|
|
|
|
|
statusContext, cancelStatus := context.WithCancel(context.Background())
|
|
|
|
defer cancelStatus()
|
|
|
|
|
|
|
|
if span := opentracing.SpanFromContext(ctx); span != nil {
|
|
|
|
statusContext = opentracing.ContextWithSpan(statusContext, span)
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:26:58 -04:00
|
|
|
s := opt.SharedSession
|
2018-04-19 13:07:27 -04:00
|
|
|
|
2019-04-24 14:26:58 -04:00
|
|
|
if s == nil {
|
|
|
|
if opt.SessionPreInitialized {
|
|
|
|
return nil, errors.Errorf("no session provided for preinitialized option")
|
|
|
|
}
|
|
|
|
s, err = session.NewSession(statusContext, defaultSessionName(), opt.SharedKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to create session")
|
|
|
|
}
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
|
|
|
|
2019-04-24 14:26:58 -04:00
|
|
|
cacheOpt, err := parseCacheOptions(opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
|
|
|
|
2019-04-03 02:23:23 -04:00
|
|
|
var ex ExportEntry
|
2020-04-16 11:06:33 -04:00
|
|
|
if len(opt.Exports) > 1 {
|
|
|
|
return nil, errors.New("currently only single Exports can be specified")
|
|
|
|
}
|
|
|
|
if len(opt.Exports) == 1 {
|
|
|
|
ex = opt.Exports[0]
|
|
|
|
}
|
2019-04-03 02:23:23 -04:00
|
|
|
|
2019-04-24 14:26:58 -04:00
|
|
|
if !opt.SessionPreInitialized {
|
|
|
|
if len(syncedDirs) > 0 {
|
|
|
|
s.Allow(filesync.NewFSSyncProvider(syncedDirs))
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
2019-04-24 14:26:58 -04:00
|
|
|
|
|
|
|
for _, a := range opt.Session {
|
|
|
|
s.Allow(a)
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
2019-04-24 14:26:58 -04:00
|
|
|
|
|
|
|
switch ex.Type {
|
|
|
|
case ExporterLocal:
|
|
|
|
if ex.Output != nil {
|
|
|
|
return nil, errors.New("output file writer is not supported by local exporter")
|
|
|
|
}
|
|
|
|
if ex.OutputDir == "" {
|
|
|
|
return nil, errors.New("output directory is required for local exporter")
|
|
|
|
}
|
|
|
|
s.Allow(filesync.NewFSSyncTargetDir(ex.OutputDir))
|
|
|
|
case ExporterOCI, ExporterDocker, ExporterTar:
|
|
|
|
if ex.OutputDir != "" {
|
|
|
|
return nil, errors.Errorf("output directory %s is not supported by %s exporter", ex.OutputDir, ex.Type)
|
|
|
|
}
|
|
|
|
if ex.Output == nil {
|
|
|
|
return nil, errors.Errorf("output file writer is required for %s exporter", ex.Type)
|
|
|
|
}
|
|
|
|
s.Allow(filesync.NewFSSyncTarget(ex.Output))
|
|
|
|
default:
|
|
|
|
if ex.Output != nil {
|
|
|
|
return nil, errors.Errorf("output file writer is not supported by %s exporter", ex.Type)
|
|
|
|
}
|
|
|
|
if ex.OutputDir != "" {
|
|
|
|
return nil, errors.Errorf("output directory %s is not supported by %s exporter", ex.OutputDir, ex.Type)
|
|
|
|
}
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
2019-04-24 14:26:58 -04:00
|
|
|
|
|
|
|
if len(cacheOpt.contentStores) > 0 {
|
|
|
|
s.Allow(sessioncontent.NewAttachable(cacheOpt.contentStores))
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
|
|
|
|
2019-04-24 14:26:58 -04:00
|
|
|
eg.Go(func() error {
|
|
|
|
return s.Run(statusContext, grpchijack.Dialer(c.controlClient()))
|
|
|
|
})
|
2019-04-03 02:23:23 -04:00
|
|
|
}
|
2019-04-24 14:26:58 -04:00
|
|
|
|
2019-04-03 02:23:23 -04:00
|
|
|
for k, v := range cacheOpt.frontendAttrs {
|
|
|
|
opt.FrontendAttrs[k] = v
|
|
|
|
}
|
|
|
|
|
2018-08-20 13:59:40 -04:00
|
|
|
solveCtx, cancelSolve := context.WithCancel(ctx)
|
2018-04-19 13:07:27 -04:00
|
|
|
var res *SolveResponse
|
|
|
|
eg.Go(func() error {
|
2018-08-20 13:59:40 -04:00
|
|
|
ctx := solveCtx
|
|
|
|
defer cancelSolve()
|
|
|
|
|
2018-04-19 13:07:27 -04:00
|
|
|
defer func() { // make sure the Status ends cleanly on build errors
|
|
|
|
go func() {
|
|
|
|
<-time.After(3 * time.Second)
|
|
|
|
cancelStatus()
|
|
|
|
}()
|
|
|
|
logrus.Debugf("stopping session")
|
|
|
|
s.Close()
|
|
|
|
}()
|
|
|
|
var pbd *pb.Definition
|
|
|
|
if def != nil {
|
|
|
|
pbd = def.ToPB()
|
|
|
|
}
|
2020-04-16 11:06:33 -04:00
|
|
|
|
|
|
|
frontendInputs := make(map[string]*pb.Definition)
|
|
|
|
for key, st := range opt.FrontendInputs {
|
|
|
|
def, err := st.Marshal(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
frontendInputs[key] = def.ToPB()
|
|
|
|
}
|
|
|
|
|
2018-04-19 13:07:27 -04:00
|
|
|
resp, err := c.controlClient().Solve(ctx, &controlapi.SolveRequest{
|
2020-04-16 11:06:33 -04:00
|
|
|
Ref: ref,
|
|
|
|
Definition: pbd,
|
|
|
|
Exporter: ex.Type,
|
|
|
|
ExporterAttrs: ex.Attrs,
|
|
|
|
Session: s.ID(),
|
|
|
|
Frontend: opt.Frontend,
|
|
|
|
FrontendAttrs: opt.FrontendAttrs,
|
|
|
|
FrontendInputs: frontendInputs,
|
|
|
|
Cache: cacheOpt.options,
|
|
|
|
Entitlements: opt.AllowedEntitlements,
|
2018-04-19 13:07:27 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to solve")
|
|
|
|
}
|
|
|
|
res = &SolveResponse{
|
|
|
|
ExporterResponse: resp.ExporterResponse,
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2018-08-20 13:59:40 -04:00
|
|
|
if runGateway != nil {
|
|
|
|
eg.Go(func() error {
|
|
|
|
err := runGateway(ref, s)
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the callback failed then the main
|
|
|
|
// `Solve` (called above) should error as
|
|
|
|
// well. However as a fallback we wait up to
|
|
|
|
// 5s for that to happen before failing this
|
|
|
|
// goroutine.
|
|
|
|
select {
|
|
|
|
case <-solveCtx.Done():
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
cancelSolve()
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-04-19 13:07:27 -04:00
|
|
|
eg.Go(func() error {
|
|
|
|
stream, err := c.controlClient().Status(statusContext, &controlapi.StatusRequest{
|
|
|
|
Ref: ref,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to get status")
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
resp, err := stream.Recv()
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.Wrap(err, "failed to receive status")
|
|
|
|
}
|
|
|
|
s := SolveStatus{}
|
|
|
|
for _, v := range resp.Vertexes {
|
|
|
|
s.Vertexes = append(s.Vertexes, &Vertex{
|
|
|
|
Digest: v.Digest,
|
|
|
|
Inputs: v.Inputs,
|
|
|
|
Name: v.Name,
|
|
|
|
Started: v.Started,
|
|
|
|
Completed: v.Completed,
|
|
|
|
Error: v.Error,
|
|
|
|
Cached: v.Cached,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for _, v := range resp.Statuses {
|
|
|
|
s.Statuses = append(s.Statuses, &VertexStatus{
|
|
|
|
ID: v.ID,
|
|
|
|
Vertex: v.Vertex,
|
|
|
|
Name: v.Name,
|
|
|
|
Total: v.Total,
|
|
|
|
Current: v.Current,
|
|
|
|
Timestamp: v.Timestamp,
|
|
|
|
Started: v.Started,
|
|
|
|
Completed: v.Completed,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for _, v := range resp.Logs {
|
|
|
|
s.Logs = append(s.Logs, &VertexLog{
|
|
|
|
Vertex: v.Vertex,
|
|
|
|
Stream: int(v.Stream),
|
|
|
|
Data: v.Msg,
|
|
|
|
Timestamp: v.Timestamp,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if statusChan != nil {
|
|
|
|
statusChan <- &s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if err := eg.Wait(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-04-03 02:23:23 -04:00
|
|
|
// Update index.json of exported cache content store
|
|
|
|
// FIXME(AkihiroSuda): dedupe const definition of cache/remotecache.ExporterResponseManifestDesc = "cache.manifest"
|
|
|
|
if manifestDescJSON := res.ExporterResponse["cache.manifest"]; manifestDescJSON != "" {
|
|
|
|
var manifestDesc ocispec.Descriptor
|
|
|
|
if err = json.Unmarshal([]byte(manifestDescJSON), &manifestDesc); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for indexJSONPath, tag := range cacheOpt.indicesToUpdate {
|
|
|
|
if err = ociindex.PutDescToIndexJSONFileLocked(indexJSONPath, manifestDesc, tag); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-19 13:07:27 -04:00
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func prepareSyncedDirs(def *llb.Definition, localDirs map[string]string) ([]filesync.SyncedDir, error) {
|
|
|
|
for _, d := range localDirs {
|
|
|
|
fi, err := os.Stat(d)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "could not find %s", d)
|
|
|
|
}
|
|
|
|
if !fi.IsDir() {
|
|
|
|
return nil, errors.Errorf("%s not a directory", d)
|
|
|
|
}
|
|
|
|
}
|
2019-04-03 02:23:23 -04:00
|
|
|
resetUIDAndGID := func(p string, st *fstypes.Stat) bool {
|
2018-09-05 14:54:38 -04:00
|
|
|
st.Uid = 0
|
|
|
|
st.Gid = 0
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-04-19 13:07:27 -04:00
|
|
|
dirs := make([]filesync.SyncedDir, 0, len(localDirs))
|
|
|
|
if def == nil {
|
|
|
|
for name, d := range localDirs {
|
2018-09-05 14:54:38 -04:00
|
|
|
dirs = append(dirs, filesync.SyncedDir{Name: name, Dir: d, Map: resetUIDAndGID})
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, dt := range def.Def {
|
|
|
|
var op pb.Op
|
|
|
|
if err := (&op).Unmarshal(dt); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to parse llb proto op")
|
|
|
|
}
|
|
|
|
if src := op.GetSource(); src != nil {
|
|
|
|
if strings.HasPrefix(src.Identifier, "local://") { // TODO: just make a type property
|
|
|
|
name := strings.TrimPrefix(src.Identifier, "local://")
|
|
|
|
d, ok := localDirs[name]
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.Errorf("local directory %s not enabled", name)
|
|
|
|
}
|
2018-09-05 14:54:38 -04:00
|
|
|
dirs = append(dirs, filesync.SyncedDir{Name: name, Dir: d, Map: resetUIDAndGID}) // TODO: excludes
|
2018-04-19 13:07:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return dirs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultSessionName() string {
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return "unknown"
|
|
|
|
}
|
|
|
|
return filepath.Base(wd)
|
|
|
|
}
|
2019-04-03 02:23:23 -04:00
|
|
|
|
|
|
|
type cacheOptions struct {
|
|
|
|
options controlapi.CacheOptions
|
|
|
|
contentStores map[string]content.Store // key: ID of content store ("local:" + csDir)
|
|
|
|
indicesToUpdate map[string]string // key: index.JSON file name, value: tag
|
|
|
|
frontendAttrs map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseCacheOptions(opt SolveOpt) (*cacheOptions, error) {
|
|
|
|
var (
|
|
|
|
cacheExports []*controlapi.CacheOptionsEntry
|
|
|
|
cacheImports []*controlapi.CacheOptionsEntry
|
|
|
|
// legacy API is used for registry caches, because the daemon might not support the new API
|
|
|
|
legacyExportRef string
|
|
|
|
legacyImportRefs []string
|
|
|
|
)
|
|
|
|
contentStores := make(map[string]content.Store)
|
|
|
|
indicesToUpdate := make(map[string]string) // key: index.JSON file name, value: tag
|
|
|
|
frontendAttrs := make(map[string]string)
|
|
|
|
legacyExportAttrs := make(map[string]string)
|
|
|
|
for _, ex := range opt.CacheExports {
|
|
|
|
if ex.Type == "local" {
|
|
|
|
csDir := ex.Attrs["dest"]
|
|
|
|
if csDir == "" {
|
|
|
|
return nil, errors.New("local cache exporter requires dest")
|
|
|
|
}
|
|
|
|
if err := os.MkdirAll(csDir, 0755); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cs, err := contentlocal.NewStore(csDir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
contentStores["local:"+csDir] = cs
|
|
|
|
// TODO(AkihiroSuda): support custom index JSON path and tag
|
|
|
|
indexJSONPath := filepath.Join(csDir, "index.json")
|
|
|
|
indicesToUpdate[indexJSONPath] = "latest"
|
|
|
|
}
|
|
|
|
if ex.Type == "registry" && legacyExportRef == "" {
|
|
|
|
legacyExportRef = ex.Attrs["ref"]
|
|
|
|
for k, v := range ex.Attrs {
|
|
|
|
if k != "ref" {
|
|
|
|
legacyExportAttrs[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cacheExports = append(cacheExports, &controlapi.CacheOptionsEntry{
|
|
|
|
Type: ex.Type,
|
|
|
|
Attrs: ex.Attrs,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, im := range opt.CacheImports {
|
|
|
|
attrs := im.Attrs
|
|
|
|
if im.Type == "local" {
|
|
|
|
csDir := im.Attrs["src"]
|
|
|
|
if csDir == "" {
|
|
|
|
return nil, errors.New("local cache importer requires src")
|
|
|
|
}
|
|
|
|
cs, err := contentlocal.NewStore(csDir)
|
|
|
|
if err != nil {
|
2020-04-16 11:06:33 -04:00
|
|
|
logrus.Warning("local cache import at " + csDir + " not found due to err: " + err.Error())
|
|
|
|
continue
|
2019-04-03 02:23:23 -04:00
|
|
|
}
|
|
|
|
// if digest is not specified, load from "latest" tag
|
|
|
|
if attrs["digest"] == "" {
|
|
|
|
idx, err := ociindex.ReadIndexJSONFileLocked(filepath.Join(csDir, "index.json"))
|
|
|
|
if err != nil {
|
2020-04-16 11:06:33 -04:00
|
|
|
logrus.Warning("local cache import at " + csDir + " not found due to err: " + err.Error())
|
|
|
|
continue
|
2019-04-03 02:23:23 -04:00
|
|
|
}
|
|
|
|
for _, m := range idx.Manifests {
|
2020-04-16 11:06:33 -04:00
|
|
|
if (m.Annotations[ocispec.AnnotationRefName] == "latest" && attrs["tag"] == "") || (attrs["tag"] != "" && m.Annotations[ocispec.AnnotationRefName] == attrs["tag"]) {
|
2019-04-03 02:23:23 -04:00
|
|
|
attrs["digest"] = string(m.Digest)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if attrs["digest"] == "" {
|
2020-04-16 11:06:33 -04:00
|
|
|
return nil, errors.New("local cache importer requires either explicit digest, \"latest\" tag or custom tag on index.json")
|
2019-04-03 02:23:23 -04:00
|
|
|
}
|
|
|
|
}
|
2020-04-16 11:06:33 -04:00
|
|
|
contentStores["local:"+csDir] = cs
|
|
|
|
|
2019-04-03 02:23:23 -04:00
|
|
|
}
|
|
|
|
if im.Type == "registry" {
|
|
|
|
legacyImportRef := attrs["ref"]
|
|
|
|
legacyImportRefs = append(legacyImportRefs, legacyImportRef)
|
|
|
|
} else {
|
|
|
|
cacheImports = append(cacheImports, &controlapi.CacheOptionsEntry{
|
|
|
|
Type: im.Type,
|
|
|
|
Attrs: attrs,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if opt.Frontend != "" {
|
|
|
|
// use legacy API for registry importers, because the frontend might not support the new API
|
|
|
|
if len(legacyImportRefs) > 0 {
|
|
|
|
frontendAttrs["cache-from"] = strings.Join(legacyImportRefs, ",")
|
|
|
|
}
|
|
|
|
// use new API for other importers
|
|
|
|
if len(cacheImports) > 0 {
|
|
|
|
s, err := json.Marshal(cacheImports)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
frontendAttrs["cache-imports"] = string(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res := cacheOptions{
|
|
|
|
options: controlapi.CacheOptions{
|
|
|
|
// old API (for registry caches, planned to be removed in early 2019)
|
|
|
|
ExportRefDeprecated: legacyExportRef,
|
|
|
|
ExportAttrsDeprecated: legacyExportAttrs,
|
|
|
|
ImportRefsDeprecated: legacyImportRefs,
|
|
|
|
// new API
|
|
|
|
Exports: cacheExports,
|
|
|
|
Imports: cacheImports,
|
|
|
|
},
|
|
|
|
contentStores: contentStores,
|
|
|
|
indicesToUpdate: indicesToUpdate,
|
|
|
|
frontendAttrs: frontendAttrs,
|
|
|
|
}
|
|
|
|
return &res, nil
|
|
|
|
}
|