Getting Started with Kubernetes: Use kubeadm to Deploy a Cluster on Linode
Updated by Linode Contributed by Linode
You can use kubeadm to run a few simple commands on individual servers to turn them into a Kubernetes cluster consisting of a master node and worker nodes. This guide will walk you through installing kubeadm and using it to deploy a Kubernetes cluster on Linode. While the kubeadm approach requires more manual steps than other Kubernetes cluster creation pathways offered by Linode, this solution will be covered as way to dive deeper into the various components that make up a Kubernetes cluster and the ways in which they interact with each other to provide a scalable and reliable container orchestration mechanism.
NoteThis guide’s example instructions will result in the creation of three billable Linodes. Information on how to tear down the Linodes are provided at the end of the guide. Interacting with the Linodes via the command line will provide the most opportunity for learning, however, this guide is written so that users can also benefit by reading along.
Alternatives for Creating Clusters
While kubeadm automates several cluster-provisioning tasks, there are other even faster methods for creating a cluster, all of which are great options for production ready deployments:
The Linode Kubernetes Engine, allows you to spin up a Kubernetes cluster from the Cloud Manager or the Linode API, and Linode will handle the management and maintenance of your control plane.
If you prefer a full featured GUI, Linode’s Rancher integration enables you to deploy and manage Kubernetes clusters with a simple web interface.
CautionThe k8s-alpha CLI is deprecated. On March 31st, 2020, it will be removed from the linode-cli. After March 31, 2020, you will no longer be able to create or manage clusters using the k8s-alpha CLI plugin.
However, you will still be able to create and manage these clusters using Terraform. The Terraform module used is a public project officially supported by Linode, and is currently used to power the k8s-alpha CLI.
Other alternatives for creating and managing clusters include:
- The Linode Kubernetes Engine (LKE), which creates clusters managed by Linode.
- Rancher, which provides a graphical user interface for managing clusters.
Before You Begin
Deploy three Linodes running Ubuntu 18.04 with the following system requirements:
- One Linode to use as the master Node with 4GB RAM and 2 CPU cores.
- Two Linodes to use as the worker Nodes each with 1GB RAM and 1 CPU core.
Follow the Getting Started and the Securing Your Server guides for instructions on setting up your Linodes. The steps in this guide assume the use of a limited user account with sudo privileges.
Note
When following the Getting Started guide, make sure that each Linode is using a different hostname. Not following this guideline will leave you unable to join some or all nodes to the cluster in a later step.Disable swap memory on your Linodes. Kubernetes requires that you disable swap memory on any cluster nodes to prevent the kube-scheduler from assigning a Pod to a node that has run out of CPU/memory or reached its designated CPU/memory limit.
sudo swapoff -a
Verify that your swap has been disabled. You should expect to see a value of
0
returned.cat /proc/meminfo | grep 'SwapTotal'
To learn more about managing compute resources for containers, see the official Kubernetes documentation.
Read the Beginners Guide to Kubernetes to familiarize yourself with the major components and concepts of Kubernetes. The current guide assumes a working knowledge of common Kubernetes concepts and terminology.
Build a Kubernetes Cluster
Kubernetes Cluster Architecture
A Kubernetes cluster consists of a master node and worker nodes. The master node hosts the control plane, which is the combination of all the components that provide it the ability to maintain the desired cluster state. This cluster state is defined by manifest files and the kubectl tool. While the control plane components can be run on any cluster node, it is a best practice to isolate the control plane on its own node and to run any application containers on a separate worker node. A cluster can have a single worker node or up to 5000. Each worker node must be able to maintain running containers in a Pod and be able to communicate with the master node’s control plane.
The following table provides a list of the Kubernetes tooling you will need to install on your master and worker nodes in order to meet the minimum requirements for a functioning Kubernetes cluster as described above.
Tool | Master Node | Worker Nodes |
---|---|---|
kubeadm | x | x |
Container Runtime | x | x |
kubelet | x | x |
kubectl | x | x |
Control Plane | x |
NoteThe control plane is a series of services that form Kubernetes master structure that allow it to control the cluster. The kubeadm tool allows the control plane services to run as containers on the master node. The control plane will be created when you initialize kubeadm later in this guide.
Install the Container Runtime: Docker
Docker is the software responsible for running the Pods on each node. You can use other container runtime software with Kubernetes, such as Containerd and CRI-O. You will need to install Docker on all three Linodes.
These steps install Docker Community Edition (CE) using the official Ubuntu repositories. To install on another distribution, see the official installation page.
Remove any older installations of Docker that may be on your system:
sudo apt remove docker docker-engine docker.io
Make sure you have the necessary packages to allow the use of Docker’s repository:
sudo apt install apt-transport-https ca-certificates curl software-properties-common
Add Docker’s GPG key:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Verify the fingerprint of the GPG key:
sudo apt-key fingerprint 0EBFCD88
You should see output similar to the following:
pub 4096R/0EBFCD88 2017-02-22 Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb)
sub 4096R/F273FCD8 2017-02-22 Add the
stable
Docker repository:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
Update your package index and install Docker CE:
sudo apt update sudo apt install docker-ce
Add your limited Linux user account to the
docker
group. Replace$USER
with your username:sudo usermod -aG docker $USER
Note
After entering theusermod
command, you will need to close your SSH session and open a new one for this change to take effect.Check that the installation was successful by running the built-in “Hello World” program:
sudo docker run hello-world
Setup the Docker daemon to use systemd as the cgroup driver, instead of the default cgroupfs. This is a recommended step so that kubelet and Docker are both using the same cgroup manager. This will make it easier for Kubernetes to know which resources are available on your cluster’s nodes.
sudo bash -c 'cat > /etc/docker/daemon.json <<EOF { "exec-opts": ["native.cgroupdriver=systemd"], "log-driver": "json-file", "log-opts": { "max-size": "100m" }, "storage-driver": "overlay2" } EOF'
Create a systemd directory for Docker:
sudo mkdir -p /etc/systemd/system/docker.service.d
Restart Docker:
sudo systemctl daemon-reload sudo systemctl restart docker
Install kubeadm, kubelet, and kubectl
Complete the steps outlined in this section on all three Linodes.
Update the system and install the required dependencies for installation:
sudo apt-get update && sudo apt-get install -y apt-transport-https curl
Add the required GPG key to your apt-sources keyring to authenticate the Kubernetes related packages you will install:
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
Add Kubernetes to the package manager’s list of sources:
sudo bash -c "cat <<EOF >/etc/apt/sources.list.d/kubernetes.list deb https://apt.kubernetes.io/ kubernetes-xenial main EOF"
Update apt, install kubeadm, kubelet, and kubectl, and hold the installed packages at their installed versions:
sudo apt-get update sudo apt-get install -y kubelet kubeadm kubectl sudo apt-mark hold kubelet kubeadm kubectl
Verify that kubeadm, kubelet, and kubectl have installed by retrieving their version information. Each command should return version information about each package.
kubeadm version kubelet --version kubectl version
Set up the Kubernetes Control Plane
After installing the Kubernetes related tooling on all your Linodes, you are ready to set up the Kubernetes control plane on the master node. The control plane is responsible for allocating resources to your cluster, maintaining the health of your cluster, and ensuring that it meets the minimum requirements you designate for the cluster.
The primary components of the control plane are the kube-apiserver, kube-controller-manager, kube-scheduler, and etcd. You can easily initialize the Kubernetes master node with all the necessary control plane components using kubeadm. For more information on each of control plane component see the Beginner’s Guide to Kubernetes.
In addition to the baseline control plane components, there are several addons, that can be installed on the master node to access additional cluster features. You will need to install a networking and network policy provider add on that will implement Kubernetes’ network model on the cluster’s Pod network.
This guide will use Calico as the Pod network add on. Calico is a secure and open source L3 networking and network policy provider for containers. There are several other network and network policy providers to choose from. To view a full list of providers, refer to the official Kubernetes documentation.
Notekubeadm only supports Container Network Interface (CNI) based networks. CNI consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers
Initialize kubeadm on the master node. This command will run checks against the node to ensure it contains all required Kubernetes dependencies, if the checks pass, it will then install the control plane components.
When issuing this command, it is necessary to set the Pod network range that Calico will use to allow your Pods to communicate with each other. It is recommended to use the private IP address space,
10.2.0.0/16
.Note
The Pod network IP range should not overlap with the service IP network range. The default service IP address range is
10.96.0.0/12
. You can provide an alternative service ip address range using the--service-cidr=10.97.0.0/12
option when initializing kubeadm. Replace10.97.0.0/12
with the desired service IP range.For a full list of available kubeadm initialization options, see the official Kubernetes documentation.
sudo kubeadm init --pod-network-cidr=10.2.0.0/16
You should see a similar output:
Your Kubernetes control-plane has initialized successfully! To start using your cluster, you need to run the following as a regular user: mkdir -p $HOME/.kube sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config sudo chown $(id -u):$(id -g) $HOME/.kube/config You should now deploy a Pod network to the cluster. Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at: https://kubernetes.io/docs/concepts/cluster-administration/addons/ Then you can join any number of worker nodes by running the following on each as root: kubeadm join 192.0.2.0:6443 --token udb8fn.nih6n1f1aijmbnx5 \ --discovery-token-ca-cert-hash sha256:b7c01e83d63808a4a14d2813d28c127d3a1c4e1b6fc6ba605fe4d2789d654f26
The
kubeadm join
command will be used in the Join a Worker Node to the Cluster section of this guide to bootstrap the worker nodes to the Kubernetes cluster. This command should be kept handy for later use. Below is a description of the required options you will need to pass in with thekubeadm join
command:- The master node’s IP address and the Kubernetes API server’s port number. In the example output, this is
192.0.2.0:6443
. The Kubernetes API server’s port number is6443
by default on all Kubernetes installations. - A bootstrap token. The bootstrap token has a 24-hour TTL (time to live). A new bootstrap token can be generated if your current token expires.
- A CA key hash. This is used to verify the authenticity of the data retrieved from the Kubernetes API server during the bootstrap process.
- The master node’s IP address and the Kubernetes API server’s port number. In the example output, this is
Copy the
admin.conf
configuration file to your limited user account. This file allows you to communicate with your cluster via kubectl and provides superuser privileges over the cluster. It contains a description of the cluster, users, and contexts. Copying theadmin.conf
to your limited user account will provide you with administrative privileges over your cluster.mkdir -p $HOME/.kube sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config sudo chown $(id -u):$(id -g) $HOME/.kube/config
Install the necessary Calico manifests to your master node and apply them using kubectl. The first file,
rbac-kdd.yaml
, works with Kubernetes’ role-based access control (RBAC) to provide Calico components access to necessary parts of the Kubernetes API. The second file,calico.yaml
, configures a self-hosted Calico installation that uses the Kubernetes API directly as the datastore (instead of etcd).kubectl apply -f https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted/rbac-kdd.yaml kubectl apply -f https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted/kubernetes-datastore/calico-networking/1.7/calico.yaml
Inspect the Master Node with Kubectl
After completing the previous section, your Kubernetes master node is ready with all the necessary components to manage a cluster. To gain a better understanding of all the parts that make up the master’s control plane, this section will walk you through inspecting your master node. If you have not yet reviewed the Beginner’s Guide to Kubernetes, it will be helpful to do so prior to continuing with this section as it relies on the understanding of basic Kubernetes concepts.
View the current state of all nodes in your cluster. At this stage, the only node you should expect to see is the master node, since worker nodes have yet to be bootstrapped. A
STATUS
ofReady
indicates that the master node contains all necessary components, including the Pod network add-on, to start managing clusters.kubectl get nodes
Your output should resemble the following:
NAME STATUS ROLES AGE VERSION kube-master Ready master 1h v1.14.1
Inspect the available namespaces in your cluster.
kubectl get namespaces
Your output should resemble the following:
NAME STATUS AGE default Active 23h kube-node-lease Active 23h kube-public Active 23h kube-system Active 23h
Below is an overview of each namespace installed by default on the master node by kubeadm:
default
: The default namespace contains objects with no other assigned namespace. By default, a Kubernetes cluster will instantiate a default namespace when provisioning the cluster to hold the default set of Pods, Services, and Deployments used by the cluster.kube-system
: The namespace for objects created by the Kubernetes system. This includes all resources used by the master node.kube-public
: This namespace is created automatically and is readable by all users. It contains information, like certificate authority data (CA), that helps kubeadm join and authenticate worker nodes.kube-node-lease
: Thekube-node-lease
namespace contains lease objects that are used by kubelet to determine node health. kubelet creates and periodically renews a Lease on a node. The node lifecycle controller treats this lease as a health signal. kube-node-lease was released to beta in Kubernetes 1.14.
View all resources available in the
kube-system
namespace. Thekube-system
namespace contains the widest range of resources, since it houses all control plane resources. Replacekube-system
with another namespace to view its corresponding resources.kubectl get all -n kube-system
Join a Worker Node to the Cluster
Now that your Kubernetes master node is set up, you can join worker nodes to your cluster. In order for a worker node to join a cluster, it must trust the cluster’s control plane, and the control plane must trust the worker node. This trust is managed via a shared bootstrap token and a certificate authority (CA) key hash. kubeadm handles the exchange between the control plane and the worker node. At a high-level the worker node bootstrap process is the following:
kubeadm retrieves information about the cluster from the Kubernetes API server. The bootstrap token and CA key hash are used to ensure the information originates from a trusted source.
kubelet can take over and begin the bootstrap process, since it has the necessary cluster information retrieved in the previous step. The bootstrap token is used to gain access to the Kubernetes API server and submit a certificate signing request (CSR), which is then signed by the control plane.
The worker node’s kubelet is now able to connect to the Kubernetes API server using the node’s established identity.
Before continuing, you will need to make sure that you know your Kubernetes API server’s IP address, that you have a bootstrap token, and a CA key hash. This information was provided when kubeadm was initialized on the master node in the Set up the Kubernetes Control Plane section of this guide. If you no longer have this information, you can regenerate the necessary information from the master node.
Regenerate a Bootstrap TokenThese commands should be issued from your master node.
Generate a new bootstrap token and display the
kubeadm join
command with the necessary options to join a worker node to the master node’s control plane:kubeadm token create --print-join-command
Follow the steps below on each node you would like to bootstrap to the cluster as a worker node.
SSH into the Linode that will be used as a worker node in the Kubernetes cluster.
ssh username@192.0.2.1
Join the node to your cluster using kubeadm. Ensure you replace
192.0.2.0:6443
with the IP address for your master node along with its Kubernetes API server’s port number,udb8fn.nih6n1f1aijmbnx5
with your bootstrap token, andsha256:b7c01e83d63808a4a14d2813d28c127d3a1c4e1b6fc6ba605fe4d2789d654f26
with your CA key hash. The bootstrap process will take a few moments.sudo kubeadm join 192.0.2.0:6443 --token udb8fn.nih6n1f1aijmbnx5 \ --discovery-token-ca-cert-hash sha256:b7c01e83d63808a4a14d2813d28c127d3a1c4e1b6fc6ba605fe4d2789d654f26
When the bootstrap process has completed, you should see a similar output:
This node has joined the cluster: * Certificate signing request was sent to apiserver and a response was received. * The kubelet was informed of the new secure connection details. Run 'kubectl get nodes' on the control-plane to see this node join the cluster.
Repeat the steps outlined above on the second worker node to bootstrap it to the cluster.
SSH into the master node and verify the worker nodes have joined the cluster:
kubectl get nodes
You should see a similar output.
NAME STATUS ROLES AGE VERSION kube-master Ready master 1d22h v1.14.1 kube-node-1 Ready
1d22h v1.14.1 kube-node-2 Ready 1d22h v1.14.1
Next Steps
Now that you have a Kubernetes cluster up and running, you can begin experimenting with the various ways to configure Pods, group resources, and deploy services that are exposed to the public internet. To help you get started with this, move on to follow along with the Deploy a Static Site on Linode using Kubernetes guide.
Tear Down Your Cluster
If you are done experimenting with your Kubernetes cluster, be sure to remove the Linodes you have running in order to avoid being further billed for them. See the Removing Services section of the Billing and Payments guide.
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
- Kubernetes: Configuration Best Practices
- Kubernetes: Cluster Administration Overview
- Kubernetes: Securing a Cluster
Join our Community
Find answers, ask questions, and help others.
This guide is published under a CC BY-ND 4.0 license.