1
0
mirror of https://github.com/ko-build/ko.git synced 2025-02-10 19:41:38 +02:00
Jason Hall 729419aebb
Add 'ko build' as a preferred alias for 'ko publish' (#456)
* Add 'ko build' as a preferred alias for 'ko publish'

* rm ko_publish.md
2021-10-05 08:48:57 -07:00

158 lines
4.6 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 (
"errors"
"fmt"
"log"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/google/ko/pkg/commands/options"
"github.com/spf13/cobra"
)
// addRun augments our CLI surface with run.
func addRun(topLevel *cobra.Command) {
po := &options.PublishOptions{}
bo := &options.BuildOptions{}
run := &cobra.Command{
Use: "run IMPORTPATH",
Short: "A variant of `kubectl run` that containerizes IMPORTPATH first.",
Long: `This sub-command combines "ko build" and "kubectl run" to support containerizing and running Go binaries on Kubernetes in a single command.`,
Example: `
# Publish the image and run it on Kubernetes as:
# ${KO_DOCKER_REPO}/<package name>-<hash of import path>
# When KO_DOCKER_REPO is ko.local, it is the same as if
# --local and --preserve-import-paths were passed.
ko run github.com/foo/bar/cmd/baz
# This supports relative import paths as well.
ko run ./cmd/baz
# You can also supply args and flags to the command.
ko run ./cmd/baz -- -v arg1 arg2 --yes`,
RunE: func(cmd *cobra.Command, args []string) error {
ctx := createCancellableContext()
// Args after -- are for kubectl, so only consider importPaths before it.
importPaths := args
dashes := cmd.Flags().ArgsLenAtDash()
if dashes != -1 {
importPaths = args[:cmd.Flags().ArgsLenAtDash()]
}
if len(importPaths) == 0 {
return errors.New("ko run: no importpaths listed")
}
kubectlArgs := []string{}
dashes = unparsedDashes()
if dashes != -1 {
kubectlArgs = os.Args[dashes:]
}
bo.InsecureRegistry = po.InsecureRegistry
builder, err := makeBuilder(ctx, bo)
if err != nil {
return fmt.Errorf("error creating builder: %v", err)
}
publisher, err := makePublisher(po)
if err != nil {
return fmt.Errorf("error creating publisher: %v", err)
}
defer publisher.Close()
if len(os.Args) < 3 {
return fmt.Errorf("usage: %s run <package>", os.Args[0])
}
ip := os.Args[2]
if strings.HasPrefix(ip, "-") {
return fmt.Errorf("expected first arg to be positional, got %q", ip)
}
imgs, err := publishImages(ctx, importPaths, publisher, builder)
if err != nil {
return fmt.Errorf("failed to publish images: %v", err)
}
// Usually only one, but this is the simple way to access the
// reference since the import path may have been qualified.
for k, ref := range imgs {
log.Printf("Running %q", k)
pod := filepath.Base(ref.Context().String())
// These are better defaults:
defaults := []string{
"--generator=run-pod/v1", // create a pod instead of deployment
"--attach", // stream logs back
"--rm", // clean up after ourselves
"--restart=Never", // we just want to run once
"--log-flush-frequency=1s", // flush logs more often
}
// Replaced "<package>" with "--image=<published image>".
argv := []string{"--image", ref.String()}
// Add our default kubectl flags.
// TODO: Add some way to override these.
argv = append(argv, defaults...)
// If present, adds -- arg1 arg2...
argv = append(argv, kubectlArgs...)
// "run <package> <defaults> --image <ref> <kubectlArgs>"
argv = append([]string{"run", pod}, argv...)
log.Printf("$ kubectl %s", strings.Join(argv, " "))
kubectlCmd := exec.CommandContext(ctx, "kubectl", argv...)
// Pass through our environment
kubectlCmd.Env = os.Environ()
// Pass through our std*
kubectlCmd.Stderr = os.Stderr
kubectlCmd.Stdout = os.Stdout
kubectlCmd.Stdin = os.Stdin
// Run it.
if err := kubectlCmd.Run(); err != nil {
return err
}
}
return nil
},
// We ignore unknown flags to avoid importing everything Go exposes
// from our commands.
FParseErrWhitelist: cobra.FParseErrWhitelist{
UnknownFlags: true,
},
}
options.AddPublishArg(run, po)
options.AddBuildOptions(run, bo)
topLevel.AddCommand(run)
}
func unparsedDashes() int {
for i, s := range os.Args {
if s == "--" {
return i
}
}
return -1
}