Continental Innovates with Rancher and Kubernetes
In this section, you’ll learn how to configure the K3s agent.
Throughout the K3s documentation, you will see some options that can be passed in as both command flags and environment variables. For help with passing in options, refer to How to Use Flags and Environment Variables.
-v
--vmodule
--log value, -l
--alsologtostderr
--token value, -t
K3S_TOKEN
--token-file
K3S_TOKEN_FILE
--server value, -s
K3S_URL
--data-dir value, -d
--node-name
K3S_NODE_NAME
--with-node-id
--node-label
--node-taint
--docker
--container-runtime-endpoint
--pause-image
--private-registry
--node-ip value, -i
--node-external-ip
--resolv-conf
K3S_RESOLV_CONF
--flannel-iface
--flannel-conf
--kubelet-arg
--kube-proxy-arg
--rootless
--no-flannel
--flannel-backend=none
--cluster-secret
K3S_CLUSTER_SECRET
--token
K3s agents can be configured with the options --node-label and --node-taint which adds a label and taint to the kubelet. The two options only add labels and/or taints at registration time, so they can only be added once and not changed after that again by running K3s commands.
Below is an example showing how to add labels and a taint:
--node-label foo=bar \ --node-label hello=world \ --node-taint key1=value1:NoExecute
If you want to change node labels and taints after node registration you should use kubectl. Refer to the official Kubernetes documentation for details on how to add taints and node labels.
kubectl
If an option appears in brackets below, for example [$K3S_URL], it means that the option can be passed in as an environment variable of that name.
[$K3S_URL]
NAME: k3s agent - Run node agent USAGE: k3s agent [OPTIONS] OPTIONS: -v value (logging) Number for the log level verbosity (default: 0) --vmodule value (logging) Comma-separated list of pattern=N settings for file-filtered logging --log value, -l value (logging) Log to file --alsologtostderr (logging) Log to standard error as well as file (if set) --token value, -t value (cluster) Token to use for authentication [$K3S_TOKEN] --token-file value (cluster) Token file to use for authentication [$K3S_TOKEN_FILE] --server value, -s value (cluster) Server to connect to [$K3S_URL] --data-dir value, -d value (agent/data) Folder to hold state (default: "/var/lib/rancher/k3s") --node-name value (agent/node) Node name [$K3S_NODE_NAME] --with-node-id (agent/node) Append id to node name --node-label value (agent/node) Registering and starting kubelet with set of labels --node-taint value (agent/node) Registering kubelet with set of taints --docker (agent/runtime) Use docker instead of containerd --container-runtime-endpoint value (agent/runtime) Disable embedded containerd and use alternative CRI implementation --pause-image value (agent/runtime) Customized pause image for containerd or docker sandbox (default: "docker.io/rancher/pause:3.1") --private-registry value (agent/runtime) Private registry configuration file (default: "/etc/rancher/k3s/registries.yaml") --node-ip value, -i value (agent/networking) IP address to advertise for node --node-external-ip value (agent/networking) External IP address to advertise for node --resolv-conf value (agent/networking) Kubelet resolv.conf file [$K3S_RESOLV_CONF] --flannel-iface value (agent/networking) Override default flannel interface --flannel-conf value (agent/networking) Override default flannel config file --kubelet-arg value (agent/flags) Customized flag for kubelet process --kube-proxy-arg value (agent/flags) Customized flag for kube-proxy process --rootless (experimental) Run rootless --no-flannel (deprecated) use --flannel-backend=none --cluster-secret value (deprecated) use --token [$K3S_CLUSTER_SECRET]