- Pod: set of one or more containers deployed on a single node. It is the smallest and simplest object in Kubernetes.
- Service- A way to expose an application running in a set of pods as a network service.
- Volume- Directory containing data, accessible by containers in a pod. A Kubernetes volume has the same lifespan as the pod that contains it. However, the data is preserved when either of them is restarted.
- Namespace (namespace): virtual cluster. Namespaces allow Kubernetes to manage multiple clusters (for different teams or projects) within the same physical cluster.
knowledge base
Was this helpful?
Previous Article