mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 08:20:59 +00:00
28 lines
589 B
Go
28 lines
589 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// The kustomize CLI.
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"sigs.k8s.io/kustomize/cmd/config/complete"
|
|
"sigs.k8s.io/kustomize/kustomize/v3/internal/commands"
|
|
|
|
// initialize auth
|
|
// This is here rather than in the libraries because of
|
|
// https://github.com/kubernetes-sigs/kustomize/issues/2060
|
|
_ "k8s.io/client-go/plugin/pkg/client/auth"
|
|
)
|
|
|
|
func main() {
|
|
cmd := commands.NewDefaultCommand()
|
|
complete.Complete(cmd).Complete("kustomize")
|
|
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
os.Exit(0)
|
|
}
|