k3s/pkg/cli/agent/agent.go

75 lines
1.9 KiB
Go
Raw Normal View History

2019-01-09 16:54:15 +00:00
package agent
import (
"fmt"
"os"
2020-04-19 06:38:16 +00:00
"runtime"
2019-01-09 16:54:15 +00:00
"github.com/erikdubbelboer/gspt"
"github.com/k3s-io/k3s/pkg/agent"
"github.com/k3s-io/k3s/pkg/cli/cmds"
"github.com/k3s-io/k3s/pkg/datadir"
"github.com/k3s-io/k3s/pkg/netutil"
"github.com/k3s-io/k3s/pkg/token"
"github.com/k3s-io/k3s/pkg/version"
2019-07-18 13:40:39 +00:00
"github.com/rancher/wrangler/pkg/signals"
2019-02-08 04:28:09 +00:00
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
2019-01-09 16:54:15 +00:00
)
func Run(ctx *cli.Context) error {
// hide process arguments from ps output, since they may contain
// database credentials or other secrets.
gspt.SetProcTitle(os.Args[0] + " agent")
// Evacuate cgroup v2 before doing anything else that may fork.
if err := cmds.EvacuateCgroup2(); err != nil {
return err
}
// Initialize logging, and subprocess reaping if necessary.
// Log output redirection and subprocess reaping both require forking.
if err := cmds.InitLogging(); err != nil {
return err
}
if runtime.GOOS != "windows" && os.Getuid() != 0 && !cmds.AgentConfig.Rootless {
return fmt.Errorf("agent must be run as root, or with --rootless")
2019-01-09 16:54:15 +00:00
}
2019-03-02 00:07:55 +00:00
if cmds.AgentConfig.TokenFile != "" {
token, err := token.ReadFile(cmds.AgentConfig.TokenFile)
2019-03-02 00:07:55 +00:00
if err != nil {
return err
}
cmds.AgentConfig.Token = token
}
if cmds.AgentConfig.Token == "" {
2019-01-09 16:54:15 +00:00
return fmt.Errorf("--token is required")
}
if cmds.AgentConfig.ServerURL == "" {
return fmt.Errorf("--server is required")
}
if cmds.AgentConfig.FlannelIface != "" && len(cmds.AgentConfig.NodeIP) == 0 {
cmds.AgentConfig.NodeIP.Set(netutil.GetIPFromInterface(cmds.AgentConfig.FlannelIface))
2019-07-08 23:02:06 +00:00
}
logrus.Info("Starting " + version.Program + " agent " + ctx.App.Version)
2019-02-08 04:28:09 +00:00
2019-03-08 22:47:44 +00:00
dataDir, err := datadir.LocalHome(cmds.AgentConfig.DataDir, cmds.AgentConfig.Rootless)
2019-01-09 16:54:15 +00:00
if err != nil {
return err
}
cfg := cmds.AgentConfig
cfg.Debug = ctx.GlobalBool("debug")
2019-01-09 16:54:15 +00:00
cfg.DataDir = dataDir
contextCtx := signals.SetupSignalContext()
2019-02-08 04:28:09 +00:00
2019-01-09 16:54:15 +00:00
return agent.Run(contextCtx, cfg)
}