mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
6ee28214fa
* add prune subcommand to force rentention policy enforcement
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/docker/docker/pkg/reexec"
|
|
crictl2 "github.com/kubernetes-sigs/cri-tools/cmd/crictl"
|
|
"github.com/rancher/k3s/pkg/cli/agent"
|
|
"github.com/rancher/k3s/pkg/cli/cmds"
|
|
"github.com/rancher/k3s/pkg/cli/crictl"
|
|
"github.com/rancher/k3s/pkg/cli/ctr"
|
|
"github.com/rancher/k3s/pkg/cli/etcdsnapshot"
|
|
"github.com/rancher/k3s/pkg/cli/kubectl"
|
|
"github.com/rancher/k3s/pkg/cli/server"
|
|
"github.com/rancher/k3s/pkg/configfilearg"
|
|
"github.com/rancher/k3s/pkg/containerd"
|
|
ctr2 "github.com/rancher/k3s/pkg/ctr"
|
|
kubectl2 "github.com/rancher/k3s/pkg/kubectl"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func init() {
|
|
reexec.Register("containerd", containerd.Main)
|
|
reexec.Register("kubectl", kubectl2.Main)
|
|
reexec.Register("crictl", crictl2.Main)
|
|
reexec.Register("ctr", ctr2.Main)
|
|
}
|
|
|
|
func main() {
|
|
cmd := os.Args[0]
|
|
os.Args[0] = filepath.Base(os.Args[0])
|
|
if reexec.Init() {
|
|
return
|
|
}
|
|
os.Args[0] = cmd
|
|
|
|
app := cmds.NewApp()
|
|
app.Commands = []cli.Command{
|
|
cmds.NewServerCommand(server.Run),
|
|
cmds.NewAgentCommand(agent.Run),
|
|
cmds.NewKubectlCommand(kubectl.Run),
|
|
cmds.NewCRICTL(crictl.Run),
|
|
cmds.NewCtrCommand(ctr.Run),
|
|
cmds.NewEtcdSnapshotCommand(etcdsnapshot.Run,
|
|
cmds.NewEtcdSnapshotSubcommands(
|
|
etcdsnapshot.Delete,
|
|
etcdsnapshot.List,
|
|
etcdsnapshot.Prune),
|
|
),
|
|
}
|
|
|
|
err := app.Run(configfilearg.MustParse(os.Args))
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|