2019-01-09 16:54:15 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/rancher/k3s/pkg/cli/agent"
|
|
|
|
"github.com/rancher/k3s/pkg/cli/cmds"
|
2020-08-30 03:30:07 +00:00
|
|
|
"github.com/rancher/k3s/pkg/configfilearg"
|
2019-01-09 16:54:15 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-08-29 19:46:55 +00:00
|
|
|
"github.com/urfave/cli"
|
2019-01-09 16:54:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := cmds.NewApp()
|
2020-08-29 19:46:55 +00:00
|
|
|
app.Commands = []cli.Command{
|
2019-01-09 16:54:15 +00:00
|
|
|
cmds.NewAgentCommand(agent.Run),
|
|
|
|
}
|
|
|
|
|
2020-08-30 03:30:07 +00:00
|
|
|
err := app.Run(configfilearg.MustParse(os.Args))
|
2019-01-09 16:54:15 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|