4 Ways To K8S
4 Ways To K8S
4 Ways To K8S
● CPU: 2
● Memory: 2 GB
● Disk space: 20 GB
PROS CONS
● Master node
● Worker node
But this solution is quite heavy to run on a laptop. Each node should
be deployed in a VM and the minimal requirements are:
● Memory: 2 GB
● CPU: 2 (only for the master)
If you want to deploy a cluster with several nodes you must have a
quite powerful computer. But you will be able to discover the full
potential of Kubernetes. Here is a tutorial to help you to deploy
your first Kubernetes cluster using Kubeadm.
Example of a cluster deployed with Kubeadm
● Single node
● 1 master and several workers
● Several masters and several workers
These clusters are very easy to deploy. It can be done from a very
simple YAML file:
kind: Cluster
apiVersion:
kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
- role: worker
- role: worker
● Linux 3.10+
● 512 MB of ram per server
● 75 MB of ram per node
● 200 MB of disk space
● x86_64, ARMv7, ARM64