mirror of
https://github.com/rancher/k3k.git
synced 2026-02-14 18:10:01 +00:00
* wip * env var fix * cluster create * cluster create and delete * cluster list * cluster cmd * kubeconfig * policy create * policy delete and list, and added root commands * removed urfavecli from k3kcli * fix policy command * k3k-kubelet to cobra * updated docs * updated go.mod * updated test * added deletion * added cleanup and flake attempts * wip bind env * simplified config
15 lines
196 B
Go
15 lines
196 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/rancher/k3k/cli/cmds"
|
|
)
|
|
|
|
func main() {
|
|
app := cmds.NewRootCmd()
|
|
if err := app.Execute(); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|