Municipal hosts still assume an old Docker Engine–only dockershim setup; the team needs a runtime for current Kubernetes. What should they prepare?
Select an answer to reveal the explanation.
Short Explanation
Modern Kubernetes talks CRI, not the old dockershim story. Put containerd or CRI-O on the hosts and configure kubelet for that runtime. Swarm or raw docker run is a different orchestra.
Full Explanation
Current Kubernetes expects a CRI-compatible container runtime. containerd and CRI-O are common choices; dockershim was removed and is not the supported path for modern versions such as the exam’s Kubernetes line. Kubelet must be configured to use the chosen runtime endpoint. Docker Swarm and bypassing kubelet are out of scope for a kubeadm-style cluster.