Kubernetes Guide
  • Kubernetes Guide
  • Kubernetes Components
    • Master Components
      • cloud-controller-manager
      • etcd
      • kube-apiserver
      • kube-controller-manager
      • kube-scheduler
    • Node Components
      • Container Runtime
      • kubelet
      • kube-proxy
  • Kubernetes Objects
    • Pods
  • Kubernetes Concepts
    • Networking
  • Minikube
    • References
Powered by GitBook
On this page

Was this helpful?

  1. Kubernetes Components
  2. Master Components

kube-apiserver

API exposing all Kubernetes control plane features.

All API calls are sent to the master server and the server sends commands to the other services.

API server is the component we interface with when running the kubectl command.

it is possible to run several instances of it and balance traffic between those instances

PreviousetcdNextkube-controller-manager

Last updated 5 years ago

Was this helpful?