2019-01-09 16:54:15 +00:00
|
|
|
package cmds
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Agent struct {
|
2019-03-04 06:29:06 +00:00
|
|
|
Token string
|
2019-03-04 17:10:01 +00:00
|
|
|
TokenFile string
|
2019-11-14 19:42:42 +00:00
|
|
|
ClusterSecret string
|
2019-03-24 19:19:05 +00:00
|
|
|
ServerURL string
|
2019-07-24 07:22:31 +00:00
|
|
|
DisableLoadBalancer bool
|
2019-03-26 22:15:16 +00:00
|
|
|
ResolvConf string
|
2019-03-04 06:29:06 +00:00
|
|
|
DataDir string
|
|
|
|
NodeIP string
|
2019-10-15 21:17:26 +00:00
|
|
|
NodeExternalIP string
|
2019-03-04 06:29:06 +00:00
|
|
|
NodeName string
|
2019-05-03 17:36:12 +00:00
|
|
|
PauseImage string
|
2019-03-04 06:29:06 +00:00
|
|
|
Docker bool
|
|
|
|
ContainerRuntimeEndpoint string
|
|
|
|
NoFlannel bool
|
2019-03-19 23:28:43 +00:00
|
|
|
FlannelIface string
|
2019-08-08 05:56:09 +00:00
|
|
|
FlannelConf string
|
2019-03-04 06:29:06 +00:00
|
|
|
Debug bool
|
2019-03-08 22:47:44 +00:00
|
|
|
Rootless bool
|
2019-10-19 10:18:51 +00:00
|
|
|
RootlessAlreadyUnshared bool
|
2019-11-05 09:45:07 +00:00
|
|
|
WithNodeID bool
|
2020-02-28 17:10:55 +00:00
|
|
|
DisableSELinux bool
|
2019-01-09 16:54:15 +00:00
|
|
|
AgentShared
|
2019-04-05 00:43:00 +00:00
|
|
|
ExtraKubeletArgs cli.StringSlice
|
|
|
|
ExtraKubeProxyArgs cli.StringSlice
|
2019-05-07 23:47:07 +00:00
|
|
|
Labels cli.StringSlice
|
|
|
|
Taints cli.StringSlice
|
2019-10-07 23:04:58 +00:00
|
|
|
PrivateRegistry string
|
2019-01-09 16:54:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AgentShared struct {
|
|
|
|
NodeIP string
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
appName = filepath.Base(os.Args[0])
|
|
|
|
AgentConfig Agent
|
|
|
|
NodeIPFlag = cli.StringFlag{
|
|
|
|
Name: "node-ip,i",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/networking) IP address to advertise for node",
|
2019-01-09 16:54:15 +00:00
|
|
|
Destination: &AgentConfig.NodeIP,
|
|
|
|
}
|
2019-10-15 21:17:26 +00:00
|
|
|
NodeExternalIPFlag = cli.StringFlag{
|
|
|
|
Name: "node-external-ip",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/networking) External IP address to advertise for node",
|
2019-10-15 21:17:26 +00:00
|
|
|
Destination: &AgentConfig.NodeExternalIP,
|
|
|
|
}
|
2019-01-09 16:54:15 +00:00
|
|
|
NodeNameFlag = cli.StringFlag{
|
|
|
|
Name: "node-name",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/node) Node name",
|
2019-01-09 16:54:15 +00:00
|
|
|
EnvVar: "K3S_NODE_NAME",
|
|
|
|
Destination: &AgentConfig.NodeName,
|
|
|
|
}
|
2019-11-05 09:45:07 +00:00
|
|
|
WithNodeIDFlag = cli.BoolFlag{
|
|
|
|
Name: "with-node-id",
|
|
|
|
Usage: "(agent/node) Append id to node name",
|
|
|
|
Destination: &AgentConfig.WithNodeID,
|
|
|
|
}
|
2019-03-02 00:10:18 +00:00
|
|
|
DockerFlag = cli.BoolFlag{
|
|
|
|
Name: "docker",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/runtime) Use docker instead of containerd",
|
2019-03-02 00:10:18 +00:00
|
|
|
Destination: &AgentConfig.Docker,
|
|
|
|
}
|
2019-10-27 05:53:25 +00:00
|
|
|
CRIEndpointFlag = cli.StringFlag{
|
|
|
|
Name: "container-runtime-endpoint",
|
|
|
|
Usage: "(agent/runtime) Disable embedded containerd and use alternative CRI implementation",
|
|
|
|
Destination: &AgentConfig.ContainerRuntimeEndpoint,
|
|
|
|
}
|
|
|
|
PrivateRegistryFlag = cli.StringFlag{
|
|
|
|
Name: "private-registry",
|
|
|
|
Usage: "(agent/runtime) Private registry configuration file",
|
|
|
|
Destination: &AgentConfig.PrivateRegistry,
|
|
|
|
Value: "/etc/rancher/k3s/registries.yaml",
|
|
|
|
}
|
|
|
|
PauseImageFlag = cli.StringFlag{
|
|
|
|
Name: "pause-image",
|
2019-12-10 23:16:26 +00:00
|
|
|
Usage: "(agent/runtime) Customized pause image for containerd or docker sandbox",
|
2019-10-27 05:53:25 +00:00
|
|
|
Destination: &AgentConfig.PauseImage,
|
2019-12-10 23:16:26 +00:00
|
|
|
Value: "docker.io/rancher/pause:3.1",
|
2019-10-27 05:53:25 +00:00
|
|
|
}
|
2019-03-02 00:10:18 +00:00
|
|
|
FlannelFlag = cli.BoolFlag{
|
|
|
|
Name: "no-flannel",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(deprecated) use --flannel-backend=none",
|
2019-03-02 00:10:18 +00:00
|
|
|
Destination: &AgentConfig.NoFlannel,
|
|
|
|
}
|
2019-03-19 23:28:43 +00:00
|
|
|
FlannelIfaceFlag = cli.StringFlag{
|
|
|
|
Name: "flannel-iface",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/networking) Override default flannel interface",
|
2019-03-19 23:28:43 +00:00
|
|
|
Destination: &AgentConfig.FlannelIface,
|
|
|
|
}
|
2019-08-08 05:56:09 +00:00
|
|
|
FlannelConfFlag = cli.StringFlag{
|
|
|
|
Name: "flannel-conf",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/networking) Override default flannel config file",
|
2019-08-08 05:56:09 +00:00
|
|
|
Destination: &AgentConfig.FlannelConf,
|
|
|
|
}
|
2019-03-26 22:15:16 +00:00
|
|
|
ResolvConfFlag = cli.StringFlag{
|
|
|
|
Name: "resolv-conf",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/networking) Kubelet resolv.conf file",
|
2019-03-26 22:15:16 +00:00
|
|
|
EnvVar: "K3S_RESOLV_CONF",
|
|
|
|
Destination: &AgentConfig.ResolvConf,
|
|
|
|
}
|
2019-04-05 00:43:00 +00:00
|
|
|
ExtraKubeletArgs = cli.StringSliceFlag{
|
|
|
|
Name: "kubelet-arg",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/flags) Customized flag for kubelet process",
|
2019-04-05 00:43:00 +00:00
|
|
|
Value: &AgentConfig.ExtraKubeletArgs,
|
|
|
|
}
|
|
|
|
ExtraKubeProxyArgs = cli.StringSliceFlag{
|
|
|
|
Name: "kube-proxy-arg",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/flags) Customized flag for kube-proxy process",
|
2019-04-05 00:43:00 +00:00
|
|
|
Value: &AgentConfig.ExtraKubeProxyArgs,
|
|
|
|
}
|
2019-05-07 23:47:07 +00:00
|
|
|
NodeTaints = cli.StringSliceFlag{
|
|
|
|
Name: "node-taint",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/node) Registering kubelet with set of taints",
|
2019-05-07 23:47:07 +00:00
|
|
|
Value: &AgentConfig.Taints,
|
|
|
|
}
|
|
|
|
NodeLabels = cli.StringSliceFlag{
|
|
|
|
Name: "node-label",
|
2019-12-09 22:54:56 +00:00
|
|
|
Usage: "(agent/node) Registering and starting kubelet with set of labels",
|
2019-05-07 23:47:07 +00:00
|
|
|
Value: &AgentConfig.Labels,
|
|
|
|
}
|
2020-02-28 17:10:55 +00:00
|
|
|
DisableSELinuxFlag = cli.BoolFlag{
|
|
|
|
Name: "disable-selinux",
|
|
|
|
Usage: "(agent/node) Disable SELinux in containerd if currently enabled",
|
|
|
|
Hidden: true,
|
|
|
|
Destination: &AgentConfig.DisableSELinux,
|
|
|
|
}
|
2019-01-09 16:54:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewAgentCommand(action func(ctx *cli.Context) error) cli.Command {
|
|
|
|
return cli.Command{
|
|
|
|
Name: "agent",
|
|
|
|
Usage: "Run node agent",
|
|
|
|
UsageText: appName + " agent [OPTIONS]",
|
|
|
|
Action: action,
|
|
|
|
Flags: []cli.Flag{
|
2019-08-08 05:45:54 +00:00
|
|
|
VLevel,
|
|
|
|
VModule,
|
|
|
|
LogFile,
|
|
|
|
AlsoLogToStderr,
|
2019-01-09 16:54:15 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "token,t",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(cluster) Token to use for authentication",
|
2019-01-09 16:54:15 +00:00
|
|
|
EnvVar: "K3S_TOKEN",
|
|
|
|
Destination: &AgentConfig.Token,
|
|
|
|
},
|
2019-03-02 00:07:55 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "token-file",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(cluster) Token file to use for authentication",
|
2019-03-02 00:07:55 +00:00
|
|
|
EnvVar: "K3S_TOKEN_FILE",
|
|
|
|
Destination: &AgentConfig.TokenFile,
|
|
|
|
},
|
2019-01-09 16:54:15 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "server,s",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(cluster) Server to connect to",
|
2019-01-09 16:54:15 +00:00
|
|
|
EnvVar: "K3S_URL",
|
|
|
|
Destination: &AgentConfig.ServerURL,
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "data-dir,d",
|
2019-10-27 05:53:25 +00:00
|
|
|
Usage: "(agent/data) Folder to hold state",
|
2019-01-09 16:54:15 +00:00
|
|
|
Destination: &AgentConfig.DataDir,
|
|
|
|
Value: "/var/lib/rancher/k3s",
|
|
|
|
},
|
|
|
|
NodeNameFlag,
|
2019-11-13 23:13:41 +00:00
|
|
|
WithNodeIDFlag,
|
2019-10-27 05:53:25 +00:00
|
|
|
NodeLabels,
|
|
|
|
NodeTaints,
|
|
|
|
DockerFlag,
|
2020-02-28 17:10:55 +00:00
|
|
|
DisableSELinuxFlag,
|
2019-03-04 06:29:06 +00:00
|
|
|
CRIEndpointFlag,
|
2019-05-03 17:36:12 +00:00
|
|
|
PauseImageFlag,
|
2019-10-27 05:53:25 +00:00
|
|
|
PrivateRegistryFlag,
|
|
|
|
NodeIPFlag,
|
|
|
|
NodeExternalIPFlag,
|
2019-03-26 22:15:16 +00:00
|
|
|
ResolvConfFlag,
|
2019-10-27 05:53:25 +00:00
|
|
|
FlannelIfaceFlag,
|
|
|
|
FlannelConfFlag,
|
2019-04-05 00:43:00 +00:00
|
|
|
ExtraKubeletArgs,
|
|
|
|
ExtraKubeProxyArgs,
|
2019-10-27 05:53:25 +00:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "rootless",
|
|
|
|
Usage: "(experimental) Run rootless",
|
|
|
|
Destination: &AgentConfig.Rootless,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Deprecated/hidden below
|
|
|
|
|
|
|
|
FlannelFlag,
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "cluster-secret",
|
|
|
|
Usage: "(deprecated) use --token",
|
2019-11-14 19:42:42 +00:00
|
|
|
Destination: &AgentConfig.ClusterSecret,
|
2019-10-27 05:53:25 +00:00
|
|
|
EnvVar: "K3S_CLUSTER_SECRET",
|
|
|
|
},
|
2019-01-09 16:54:15 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|