an offense against the style guide. (#13794)

> Use camel case for API objects
> Refer to API objects without saying “object,” unless omitting “object” leads to an awkward construction.
pull/13810/head
Shuang Wang 2019-04-13 10:18:02 +09:00 committed by Kubernetes Prow Robot
parent 662d23933e
commit 365b8ae4ef
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ In addition, Kubernetes contains a number of higher-level abstractions called Co
The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. The Control Plane maintains a record of all of the Kubernetes Objects in the system, and runs continuous control loops to manage those objects' state. At any given time, the Control Plane's control loops will respond to changes in the cluster and work to make the actual state of all the objects in the system match the desired state that you provided.
For example, when you use the Kubernetes API to create a Deployment object, you provide a new desired state for the system. The Kubernetes Control Plane records that object creation, and carries out your instructions by starting the required applications and scheduling them to cluster nodes--thus making the cluster's actual state match the desired state.
For example, when you use the Kubernetes API to create a Deployment, you provide a new desired state for the system. The Kubernetes Control Plane records that object creation, and carries out your instructions by starting the required applications and scheduling them to cluster nodes--thus making the cluster's actual state match the desired state.
### Kubernetes Master