Delploy Cluster : Managed K8 & Self Managed K8
Self Managed K8 & Managed K8 In a self-managed Kubernetes cluster, the user is responsible for managing almost every aspect of the cluster. Here are the main components that need to be managed by users: 1. Control Plane Components : Kube-apiserver : The API server is the central management point of the Kubernetes cluster. Users are responsible for setting up, configuring, and managing its availability and performance. Etcd : The key-value store used by Kubernetes for all cluster data. Users need to manage the deployment, backup, scaling, and recovery of etcd . Kube-scheduler : This component is responsible for scheduling pods on available nodes. Users manage its configuration and ensure it runs reliably. Kube-controller-manager : This component runs controller processes that handle replication, node management, endpoints, etc. Users are responsible for managing these controllers. 2. Worker Nodes Components : Kubelet : This agent runs on each worker node and is responsible for ...
Comments
Post a Comment