Move the kustomize binary to its own module.

This commit is contained in:
Jeffrey Regan
2019-09-25 11:01:03 -07:00
parent 2d0c22d6a4
commit b82a8fd316
55 changed files with 334 additions and 87 deletions

View File

@@ -1,17 +0,0 @@
// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"os"
"sigs.k8s.io/kustomize/v3/pkg/commands"
)
func main() {
if err := commands.NewDefaultCommand().Execute(); err != nil {
os.Exit(1)
}
os.Exit(0)
}