This page looks best with JavaScript enabled

How to Change Kubelet Startup Parameters

1. Edit the Kubelet Configuration File

1
vim /etc/systemd/system/kubelet.service.d/10-kubeadm.conf

Modify the relevant Kubelet parameters

ExecStart=/usr/local/bin/kubelet $KUBELET_KUBECONFIG_ARGS $KUBELET_CONFIG_ARGS $KUBELET_KUBEADM_ARGS $KUBELET_EXTRA_ARGS

You can list the available parameters with the following command:

1
kubelet --help

For example, if you need to change --sync-frequency in KUBELET_KUBECONFIG_ARGS, the period for syncing container configuration, the default value is 1 min. What it means is that a container only notices an update to the configuration file it has mounted 1 min after the change.

2. Restart the Kubelet Service

1
2
3
systemctl stop kubelet
systemctl daemon-reload
systemctl start kubelet

3. Check the Kubelet Process

Use the following command to see the relevant startup parameters

1
ps -ef | grep kubelet

WeChat Official Account
WRITTEN BY
WeChat Official Account