References

What is Kubernetes(k8s)


k83 Architecture

Kubernetes Explained in 6 Minutes | k8s Architecture

Screenshot 2023-09-24 at 4.04.43 PM.png

etcd: a consistent and highly-available key value store used as Kubernetes' backing store for all cluster data.

Pod: a Kubernetes abstraction that represents a group of one or more application containers (such as Docker), and some shared resources for those containers.

Screenshot 2023-09-24 at 4.12.33 PM.png

Node: a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster

Why we use K83