There’s no easy way to say this, but Kubernetes is challenging. To complicate matters even further, there’s an almost endless amount of paths to getting the platform up and running.

One method of deploying a Kubernetes cluster is with https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm/ (a tool that helps fast-track your deployment) and https://containerd.io/ (a container runtime engine).

First, log into the master and Run an update/upgrade with the commands: sudo apt update sudo apt upgrade -y

Install the required software with the command: sudo apt -y install vim git curl wget kubelet kubeadm kubectl

Related Articles