Kubernetes Workload Resources: Difference between revisions
Jump to navigation
Jump to search
(→TODO) |
(→TODO) |
||
Line 4: | Line 4: | ||
TODO: https://kubernetes.io/docs/concepts/workloads/pods/#pods-and-controllers | TODO: https://kubernetes.io/docs/concepts/workloads/pods/#pods-and-controllers | ||
A workload resource has an associated controller. The controller handles replication, rollout and automatic healing in case of pod failure. For example if a node fails, a controller notices that the pods on that node have stopped working and creates replacement pods, which are scheduled on healthy nodes. | |||
Workload resources: | |||
* Deployment | |||
* StatefulSet | |||
* DaemonSet |
Revision as of 21:29, 24 September 2021
TODO
Migrate from Kubernetes Higher Level Pod Controllers
TODO: https://kubernetes.io/docs/concepts/workloads/pods/#pods-and-controllers
A workload resource has an associated controller. The controller handles replication, rollout and automatic healing in case of pod failure. For example if a node fails, a controller notices that the pods on that node have stopped working and creates replacement pods, which are scheduled on healthy nodes.
Workload resources:
- Deployment
- StatefulSet
- DaemonSet