Glossary
Learn about some of the most common Kubernetes-related terms used in the course.
We'll cover the following...
Terminology
This glossary defines some of the most common Kubernetes-related terms used in the course.
API server: This is part of the Kubernetes control plane and runs on all control-plane nodes. All communication with Kubernetes and
kubectl
commands and responses go through the API Server.Container: A container is an application and dependencies packaged to run on Docker or Kubernetes. In addition to application stuff, every container is an isolated virtual operating system with its own process tree, filesystem, shared memory, and more.
Cloud-native: This is an application that can self-heal, scale on demand, and perform rolling updates and rollbacks. It’s usually a microservices app that runs on Kubernetes.
Container runtime: ...