Skip to content

Commit

Permalink
feat: ✨ Add new blog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
nclsbayona committed Feb 4, 2025
1 parent c7acf8f commit b30356e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/post/kubernetes/kubernetes-architecture/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Lets try to explain Kubernetes architecture using a fairly-easy to understand me

Lets start talking about the Control Plane components first:

- ***kube-apiserver***: The `kube-apiserver` is the entrypoint to interacting with the Kubernetes API, its the front-end for the Kubernetes control plane. Think of it as the recepcionist at town hall, every request targeting the town hall should go through the reception. This component is designed to scale horizontally (Deploy new instances) so its usual to have a load-balancer to access the **kube-apiserver** by distributing traffic between multiple different instances.
- ***kube-apiserver***: The `kube-apiserver` is the entrypoint to interacting with the Kubernetes API, its the front-end for the Kubernetes control plane. Think of it as the recepcionist at town hall, every request targeting the town hall should go through the reception. This component is designed to scale horizontally (Deploy new instances) so its usual to have a load-balancer to access the **kube-apiserver** by distributing traffic between multiple different instances.

- ***etcd***: To store data [`etcd`](https://etcd.io/) is used, this is a key-value distributed database that allows to store cluster's desired state so that nodes can get to the desired state. You can think of this as the city's webpage where they publish operations they must do.

Expand Down

0 comments on commit b30356e

Please sign in to comment.