mirror of
https://github.com/ko-build/ko.git
synced 2025-02-07 19:30:23 +02:00
* Create a MultiPublisher MultiPublisher mimics io.MultiWriter in that it will publish an image to multiple publish.Interface implementations. * Add publish.{Tarball,Layout}Publisher This adds support for publishing in the tarball format and to an OCI image layout. The tarball format isn't great, yet. It only supports writing once instead of appending. * Consolidate options These were spread all over the place for no reasons. Now all the publisher related options are grouped together. * Add options for tarball/layout Adds --oci-layout-path, --tarball, and --push flags. --push=false will disable the default behavior of publishing to a registry. * go mod vendor * Add Close method to publish.Interface This allows us to defer writing to the tarball until we've collected all the images that have been published. * Fix tests
392 lines
11 KiB
Go
392 lines
11 KiB
Go
// 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 commands
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"sync"
|
|
|
|
"github.com/google/go-containerregistry/pkg/authn"
|
|
"github.com/google/go-containerregistry/pkg/name"
|
|
"github.com/google/ko/pkg/build"
|
|
"github.com/google/ko/pkg/commands/options"
|
|
"github.com/google/ko/pkg/publish"
|
|
"github.com/google/ko/pkg/resolve"
|
|
"github.com/mattmoor/dep-notify/pkg/graph"
|
|
"golang.org/x/sync/errgroup"
|
|
"gopkg.in/yaml.v3"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
)
|
|
|
|
func defaultTransport() http.RoundTripper {
|
|
return &useragentTransport{
|
|
inner: http.DefaultTransport,
|
|
useragent: ua(),
|
|
}
|
|
}
|
|
|
|
type useragentTransport struct {
|
|
useragent string
|
|
inner http.RoundTripper
|
|
}
|
|
|
|
func ua() string {
|
|
if v := version(); v != "" {
|
|
return "ko/" + v
|
|
}
|
|
return "ko"
|
|
}
|
|
|
|
// RoundTrip implements http.RoundTripper
|
|
func (ut *useragentTransport) RoundTrip(in *http.Request) (*http.Response, error) {
|
|
in.Header.Set("User-Agent", ut.useragent)
|
|
return ut.inner.RoundTrip(in)
|
|
}
|
|
|
|
func gobuildOptions(bo *options.BuildOptions) ([]build.Option, error) {
|
|
creationTime, err := getCreationTime()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
opts := []build.Option{
|
|
build.WithBaseImages(getBaseImage),
|
|
}
|
|
if creationTime != nil {
|
|
opts = append(opts, build.WithCreationTime(*creationTime))
|
|
}
|
|
if bo.DisableOptimizations {
|
|
opts = append(opts, build.WithDisabledOptimizations())
|
|
}
|
|
return opts, nil
|
|
}
|
|
|
|
func makeBuilder(bo *options.BuildOptions) (*build.Caching, error) {
|
|
opt, err := gobuildOptions(bo)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error setting up builder options: %v", err)
|
|
}
|
|
innerBuilder, err := build.NewGo(opt...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
innerBuilder = build.NewLimiter(innerBuilder, bo.ConcurrentBuilds)
|
|
|
|
// tl;dr Wrap builder in a caching builder.
|
|
//
|
|
// The caching builder should on Build calls:
|
|
// - Check for a valid Build future
|
|
// - if a valid Build future exists at the time of the request,
|
|
// then block on it.
|
|
// - if it does not, then initiate and record a Build future.
|
|
// - When import paths are "affected" by filesystem changes during a
|
|
// Watch, then invalidate their build futures *before* we put the
|
|
// affected yaml files onto the channel
|
|
//
|
|
// This will benefit the following key cases:
|
|
// 1. When the same import path is referenced across multiple yaml files
|
|
// we can elide subsequent builds by blocking on the same image future.
|
|
// 2. When an affected yaml file has multiple import paths (mostly unaffected)
|
|
// we can elide the builds of unchanged import paths.
|
|
return build.NewCaching(innerBuilder)
|
|
}
|
|
|
|
func makePublisher(po *options.PublishOptions) (publish.Interface, error) {
|
|
// Create the publish.Interface that we will use to publish image references
|
|
// to either a docker daemon or a container image registry.
|
|
innerPublisher, err := func() (publish.Interface, error) {
|
|
repoName := os.Getenv("KO_DOCKER_REPO")
|
|
namer := options.MakeNamer(po)
|
|
if repoName == publish.LocalDomain || po.Local {
|
|
// TODO(jonjohnsonjr): I'm assuming that nobody will
|
|
// use local with other publishers, but that might
|
|
// not be true.
|
|
return publish.NewDaemon(namer, po.Tags), nil
|
|
}
|
|
|
|
if repoName == "" {
|
|
return nil, errors.New("KO_DOCKER_REPO environment variable is unset")
|
|
}
|
|
if _, err := name.NewRegistry(repoName); err != nil {
|
|
if _, err := name.NewRepository(repoName); err != nil {
|
|
return nil, fmt.Errorf("failed to parse environment variable KO_DOCKER_REPO=%q as repository: %v", repoName, err)
|
|
}
|
|
}
|
|
|
|
publishers := []publish.Interface{}
|
|
if po.OCILayoutPath != "" {
|
|
lp, err := publish.NewLayout(po.OCILayoutPath)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create LayoutPublisher for %q: %v", po.OCILayoutPath, err)
|
|
}
|
|
publishers = append(publishers, lp)
|
|
}
|
|
if po.TarballFile != "" {
|
|
tp := publish.NewTarball(po.TarballFile, repoName, namer, po.Tags)
|
|
publishers = append(publishers, tp)
|
|
}
|
|
if po.Push {
|
|
dp, err := publish.NewDefault(repoName,
|
|
publish.WithTransport(defaultTransport()),
|
|
publish.WithAuthFromKeychain(authn.DefaultKeychain),
|
|
publish.WithNamer(namer),
|
|
publish.WithTags(po.Tags),
|
|
publish.Insecure(po.InsecureRegistry))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
publishers = append(publishers, dp)
|
|
}
|
|
return publish.MultiPublisher(publishers...), nil
|
|
}()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Wrap publisher in a memoizing publisher implementation.
|
|
return publish.NewCaching(innerPublisher)
|
|
}
|
|
|
|
// resolvedFuture represents a "future" for the bytes of a resolved file.
|
|
type resolvedFuture chan []byte
|
|
|
|
func resolveFilesToWriter(
|
|
ctx context.Context,
|
|
builder *build.Caching,
|
|
publisher publish.Interface,
|
|
fo *options.FilenameOptions,
|
|
so *options.SelectorOptions,
|
|
sto *options.StrictOptions,
|
|
out io.WriteCloser) error {
|
|
defer out.Close()
|
|
|
|
// By having this as a channel, we can hook this up to a filesystem
|
|
// watcher and leave `fs` open to stream the names of yaml files
|
|
// affected by code changes (including the modification of existing or
|
|
// creation of new yaml files).
|
|
fs := options.EnumerateFiles(fo)
|
|
|
|
// This tracks filename -> []importpath
|
|
var sm sync.Map
|
|
|
|
var g graph.Interface
|
|
var errCh chan error
|
|
var err error
|
|
if fo.Watch {
|
|
// Start a dep-notify process that on notifications scans the
|
|
// file-to-recorded-build map and for each affected file resends
|
|
// the filename along the channel.
|
|
g, errCh, err = graph.New(func(ss graph.StringSet) {
|
|
sm.Range(func(k, v interface{}) bool {
|
|
key := k.(string)
|
|
value := v.([]string)
|
|
|
|
for _, ip := range value {
|
|
if ss.Has(ip) {
|
|
// See the comment above about how "builder" works.
|
|
builder.Invalidate(ip)
|
|
fs <- key
|
|
}
|
|
}
|
|
return true
|
|
})
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("creating dep-notify graph: %v", err)
|
|
}
|
|
// Cleanup the fsnotify hooks when we're done.
|
|
defer g.Shutdown()
|
|
}
|
|
|
|
// This tracks resolution errors and ensures we cancel other builds if an
|
|
// individual build fails.
|
|
errs, ctx := errgroup.WithContext(ctx)
|
|
|
|
var futures []resolvedFuture
|
|
for {
|
|
// Each iteration, if there is anything in the list of futures,
|
|
// listen to it in addition to the file enumerating channel.
|
|
// A nil channel is never available to receive on, so if nothing
|
|
// is available, this will result in us exclusively selecting
|
|
// on the file enumerating channel.
|
|
var bf resolvedFuture
|
|
if len(futures) > 0 {
|
|
bf = futures[0]
|
|
} else if fs == nil {
|
|
// There are no more files to enumerate and the futures
|
|
// have been drained, so quit.
|
|
break
|
|
}
|
|
|
|
select {
|
|
case file, ok := <-fs:
|
|
if !ok {
|
|
// a nil channel is never available to receive on.
|
|
// This allows us to drain the list of in-process
|
|
// futures without this case of the select winning
|
|
// each time.
|
|
fs = nil
|
|
break
|
|
}
|
|
|
|
// Make a new future to use to ship the bytes back and append
|
|
// it to the list of futures (see comment below about ordering).
|
|
ch := make(resolvedFuture)
|
|
futures = append(futures, ch)
|
|
|
|
// Kick off the resolution that will respond with its bytes on
|
|
// the future.
|
|
f := file // defensive copy
|
|
errs.Go(func() error {
|
|
defer close(ch)
|
|
// Record the builds we do via this builder.
|
|
recordingBuilder := &build.Recorder{
|
|
Builder: builder,
|
|
}
|
|
b, err := resolveFile(ctx, f, recordingBuilder, publisher, so, sto)
|
|
if err != nil {
|
|
// This error is sometimes expected during watch mode, so this
|
|
// isn't fatal. Just print it and keep the watch open.
|
|
err := fmt.Errorf("error processing import paths in %q: %v", f, err)
|
|
if fo.Watch {
|
|
log.Print(err)
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
// Associate with this file the collection of binary import paths.
|
|
sm.Store(f, recordingBuilder.ImportPaths)
|
|
ch <- b
|
|
if fo.Watch {
|
|
for _, ip := range recordingBuilder.ImportPaths {
|
|
// Technically we never remove binary targets from the graph,
|
|
// which will increase our graph's watch load, but the
|
|
// notifications that they change will result in no affected
|
|
// yamls, and no new builds or deploys.
|
|
if err := g.Add(ip); err != nil {
|
|
// If we're in watch mode, just fail.
|
|
err := fmt.Errorf("adding importpath to dep graph: %v", err)
|
|
errCh <- err
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
|
|
case b, ok := <-bf:
|
|
// Once the head channel returns something, dequeue it.
|
|
// We listen to the futures in order to be respectful of
|
|
// the kubectl apply ordering, which matters!
|
|
futures = futures[1:]
|
|
if ok {
|
|
// Write the next body and a trailing delimiter.
|
|
// We write the delimeter LAST so that when streamed to
|
|
// kubectl it knows that the resource is complete and may
|
|
// be applied.
|
|
out.Write(append(b, []byte("\n---\n")...))
|
|
}
|
|
|
|
case err := <-errCh:
|
|
return fmt.Errorf("watching dependencies: %v", err)
|
|
}
|
|
}
|
|
|
|
// Make sure we exit with an error.
|
|
// See https://github.com/google/ko/issues/84
|
|
return errs.Wait()
|
|
}
|
|
|
|
func resolveFile(
|
|
ctx context.Context,
|
|
f string,
|
|
builder build.Interface,
|
|
pub publish.Interface,
|
|
so *options.SelectorOptions,
|
|
sto *options.StrictOptions) (b []byte, err error) {
|
|
|
|
var selector labels.Selector
|
|
if so.Selector != "" {
|
|
var err error
|
|
selector, err = labels.Parse(so.Selector)
|
|
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to parse selector: %v", err)
|
|
}
|
|
}
|
|
|
|
if f == "-" {
|
|
b, err = ioutil.ReadAll(os.Stdin)
|
|
} else {
|
|
b, err = ioutil.ReadFile(f)
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var docNodes []*yaml.Node
|
|
|
|
// The loop is to support multi-document yaml files.
|
|
// This is handled by using a yaml.Decoder and reading objects until io.EOF, see:
|
|
// https://godoc.org/gopkg.in/yaml.v3#Decoder.Decode
|
|
decoder := yaml.NewDecoder(bytes.NewBuffer(b))
|
|
for {
|
|
var doc yaml.Node
|
|
if err := decoder.Decode(&doc); err != nil {
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
if selector != nil {
|
|
if match, err := resolve.MatchesSelector(&doc, selector); err != nil {
|
|
return nil, fmt.Errorf("error evaluating selector: %v", err)
|
|
} else if !match {
|
|
continue
|
|
}
|
|
}
|
|
|
|
docNodes = append(docNodes, &doc)
|
|
|
|
}
|
|
|
|
if err := resolve.ImageReferences(ctx, docNodes, sto.Strict, builder, pub); err != nil {
|
|
return nil, fmt.Errorf("error resolving image references: %v", err)
|
|
}
|
|
|
|
buf := &bytes.Buffer{}
|
|
e := yaml.NewEncoder(buf)
|
|
e.SetIndent(2)
|
|
|
|
for _, doc := range docNodes {
|
|
err := e.Encode(doc)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to encode output: %v", err)
|
|
}
|
|
}
|
|
e.Close()
|
|
|
|
return buf.Bytes(), nil
|
|
}
|