Slide 7
Slide 7 text
Basic components in Kubernetes
Pod: Smallest unit of work
- the smallest deployable object in the Kubernetes object model
- Can hold one or more containers
Deployment: Controller for Pods and ReplicaSets
- Great for stateless apps, like restful Api
- Scaling of the pods
StatefulSet: Controller for manage stateful applications
- Maintain order, sticky identity, no interchangeability of the
Pods
7