Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Latest commit

 

History

History
113 lines (80 loc) · 3.66 KB

upgrade-bootstrap-kubelet.md

File metadata and controls

113 lines (80 loc) · 3.66 KB

Upgrading bootstrap kubelet

Contents

Introduction

Kubelet is a daemon that runs on every node and is responsible for managing Pods on the node.

Lokomotive cluster runs two different sets of kubelet processes. Initially, bootstrap kubelet configured on the node as a rkt pod joins the cluster, and then kubelet pod managed using DaemonSet (self-hosted kubelet) takes over the bootstrap kubelet. Self-hosted kubelet allows seamless updates between Kubernetes patch versions and node configuration using tools like kubectl.

Currently lokoctl cannot update bootstrap kubelet, so this document explains how to perform this operation manually.

Steps

Perform the following steps on each node, one node at a time.

Step 1: Drain the node

Caution: If you are using a local directory as a storage for a workload, it will be disturbed by this operation. To avoid this move the workload to another node and let the application replicate the data. If the application does not support data replication across instances, then expect downtime.

kubectl drain --ignore-daemonsets <node name>

Step 2: Find out the IP and SSH

Find the IP of the node by visiting the cloud provider dashboard. Then, connect to selected machine using SSH.

ssh core@<IP Address>

Step 3: Upgrade kubelet on node

Run the following commands:

NOTE: Before proceeding to other commands, set the latest_kube variable to the latest Kubernetes version. Latest Kubernetes version can be found by running this command after a cluster upgrade: kubectl version -ojson | jq -r '.serverVersion.gitVersion'.

export latest_kube=<latest kubernetes version e.g. v1.18.0>
sudo sed -i "s|$(grep -i kubelet_image_tag /etc/kubernetes/kubelet.env)|KUBELET_IMAGE_TAG=${latest_kube}|g" /etc/kubernetes/kubelet.env
sudo systemctl restart kubelet
sudo journalctl -fu kubelet

Check the logs carefully. If kubelet fails to restart and instructs to do something (e.g. deleting some file), follow the instructions and reboot the node:

sudo reboot

Step 4: Verify

When disable_self_hosted_kubelet is true:

Once the node reboots and kubelet rejoins the cluster, output of following command will show new version across the node name:

kubectl get nodes

When disable_self_hosted_kubelet is false:

Verify that the kubelet service is in active (running) state:

sudo systemctl status --no-pager kubelet

Run the following command to see logs of the process since the last restart:

sudo journalctl _SYSTEMD_INVOCATION_ID=$(sudo systemctl \
                show -p InvocationID --value kubelet)

Once you see the following log lines, you can discern that the kubelet daemon has come up without errors. Kubelet daemon tries to rejoin the cluster it is taken over by the self hosted kubelet pod and you see the following logs:

Version: <latest_kube>
acquiring file lock on "/var/run/lock/kubelet.lock"

Caveats

  • When upgrading kubelet on nodes which are running Rook Ceph, verify that the Ceph cluster is in the HEALTH_OK state. If it is in any other state, do not proceed with the upgrade as doing so could lead to data loss. When the cluster is in the HEALTH_OK state it can tolerate the downtime caused by rebooting nodes.