1
0
mirror of https://github.com/ko-build/ko.git synced 2025-04-01 21:24:27 +02:00
ko-build/pkg/resolve/resolve.go

103 lines
2.5 KiB
Go
Raw Normal View History

2019-03-14 14:23:47 -04:00
// Copyright 2018 Google LLC All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package resolve
import (
"fmt"
"strings"
2019-03-14 14:23:47 -04:00
"sync"
"github.com/dprotaso/go-yit"
2019-03-21 19:07:56 -04:00
"github.com/google/ko/pkg/build"
"github.com/google/ko/pkg/publish"
"golang.org/x/sync/errgroup"
"gopkg.in/yaml.v3"
2019-03-14 14:23:47 -04:00
)
const koPrefix = "ko://"
2019-03-14 14:23:47 -04:00
// ImageReferences resolves supported references to images within the input yaml
// to published image digests.
//
// If a reference can be built and pushed, its yaml.Node will be mutated.
func ImageReferences(docs []*yaml.Node, strict bool, builder build.Interface, publisher publish.Interface) error {
2019-03-14 14:23:47 -04:00
// First, walk the input objects and collect a list of supported references
refs := make(map[string][]*yaml.Node)
for _, doc := range docs {
it := refsFromDoc(doc, strict)
for node, ok := it(); ok; node, ok = it() {
ref := strings.TrimSpace(node.Value)
tref := strings.TrimPrefix(ref, koPrefix)
if builder.IsSupportedReference(tref) {
refs[tref] = append(refs[tref], node)
} else if strict {
return fmt.Errorf("found strict reference but %s is not a valid import path", ref)
2019-03-14 14:23:47 -04:00
}
}
}
// Next, perform parallel builds for each of the supported references.
var sm sync.Map
var errg errgroup.Group
for ref := range refs {
ref := ref
errg.Go(func() error {
img, err := builder.Build(ref)
if err != nil {
return err
}
digest, err := publisher.Publish(img, ref)
if err != nil {
return err
}
sm.Store(ref, digest.String())
return nil
})
}
if err := errg.Wait(); err != nil {
return err
2019-03-14 14:23:47 -04:00
}
// Walk the tags and update them with their digest.
for ref, nodes := range refs {
digest, ok := sm.Load(ref)
2019-03-14 14:23:47 -04:00
if !ok {
return fmt.Errorf("resolved reference to %q not found", ref)
2019-03-14 14:23:47 -04:00
}
for _, node := range nodes {
node.Value = digest.(string)
2019-03-14 14:23:47 -04:00
}
}
2019-03-14 14:23:47 -04:00
return nil
}
2019-03-14 14:23:47 -04:00
func refsFromDoc(doc *yaml.Node, strict bool) yit.Iterator {
it := yit.FromNode(doc).
RecurseNodes().
Filter(yit.StringValue)
2019-03-14 14:23:47 -04:00
if strict {
return it.Filter(yit.WithPrefix(koPrefix))
2019-03-14 14:23:47 -04:00
}
return it
2019-03-14 14:23:47 -04:00
}