mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
21d21ddd4d
Signed-off-by: Darren Shepherd <darren@rancher.com>
24 lines
409 B
Go
24 lines
409 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/rancher/k3s/pkg/cli/agent"
|
|
"github.com/rancher/k3s/pkg/cli/cmds"
|
|
"github.com/rancher/k3s/pkg/configfilearg"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func main() {
|
|
app := cmds.NewApp()
|
|
app.Commands = []cli.Command{
|
|
cmds.NewAgentCommand(agent.Run),
|
|
}
|
|
|
|
err := app.Run(configfilearg.MustParse(os.Args))
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|