Slide 6
Slide 6 text
KUBERNETES - Kubectl
API Server — The Gateway to Kubernetes
Kubernetes is all about objects and an API that provides access to those objects. Nodes,
labels, pods, deployments, services, secrets, configmaps, ingress, and many more
resources are treated as objects. These objects are exposed via simple REST API through
which basic CRUD operations are performed.
One of the core building blocks of Kubernetes is the API Server which acts as the gateway
to the platform. Internal components such as kubelet, scheduler, and controller access the
API via the API Server for orchestration and coordination. The distributed key/value
database, etcd, is accessible only through the API Server