Sequential Breakdown of the Process
Learn about the sequence of events involved in the process of creating a ReplicaSet.
We'll cover the following...
Step by step process
The sequence of events that occur with the kubectl create -f go-demo-2.yml
command is as follows:
-
The Kubernetes client (
kubectl
) sends a request to the API server requesting the creation of a ReplicaSet defined in thego-demo-2.yml
file. -
The controller is watching the API server for new events, and it detects that there is a new ReplicaSet ...