Kubernetes API server

150

The Kubernetes API server is a component of the Kubernetes control plane, and exposes the Kubernetes API.

Stuff you wanna know

  1. The Kubernetes API server validates and configures data for the API objects which include pods, services, replication controllers, and others.
  2. The Kubernetes API Server services REST operations and provides the frontend to the cluster’s shared state through which all other components interact.
  3. The main implementation of the Kubernetes API server is kube-apiserver.

Ref: