Kubernetes ReplicaSet: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= =Internal= * Kubernetes Higher Level Pod Controllers =Overview= =Replicaset Controller= The replicaset c...") |
|||
Line 9: | Line 9: | ||
The replicaset controller is part of the [[Kubernetes_Control_Plane_and_Data_Plane_Concepts#Controller_Manager|controller manager]]. The controller implements a watch loop that is constantly observing the cluster making sure that the current state matches the desired state - the desired number of pods. | The replicaset controller is part of the [[Kubernetes_Control_Plane_and_Data_Plane_Concepts#Controller_Manager|controller manager]]. The controller implements a watch loop that is constantly observing the cluster making sure that the current state matches the desired state - the desired number of pods. | ||
=Scaling= | |||
A ReplicaSet has a Scale sub-resource, allowing it to be controlled by a [[Kubernetes Horizontal Pod Autoscaler#Overview|horizontal pod autoscaler]]. |
Revision as of 02:40, 7 October 2020
External
Internal
Overview
Replicaset Controller
The replicaset controller is part of the controller manager. The controller implements a watch loop that is constantly observing the cluster making sure that the current state matches the desired state - the desired number of pods.
Scaling
A ReplicaSet has a Scale sub-resource, allowing it to be controlled by a horizontal pod autoscaler.