Kubernetes Workload Resources: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 13: Line 13:
The [[Kubernetes_Deployments#Overview|Deployment]] is a resource that delegates to a ReplicaSet. The deployment enhances a ReplicaSet semantics with things like deployment strategy. An older, deprecated alternative to Deployments are [[Kubernetes_ReplicationController|ReplicationControllers]].
The [[Kubernetes_Deployments#Overview|Deployment]] is a resource that delegates to a ReplicaSet. The deployment enhances a ReplicaSet semantics with things like deployment strategy. An older, deprecated alternative to Deployments are [[Kubernetes_ReplicationController|ReplicationControllers]].


[[Kubernetes StatefulSet|StatefulSet]]
[[Kubernetes StatefulSet|StatefulSet]] is the workload API object used to manage stateful applications. [[Kubernetes DaemonSet|DaemonSet]]
 
[[Kubernetes DaemonSet|DaemonSet]]


<font color=darkkhaki>These controllers are part of and supervised by the controller manager.
<font color=darkkhaki>These controllers are part of and supervised by the controller manager.

Revision as of 20:18, 13 July 2023

Internal

Overview

Workload resources exist to create and manage Pods, which should not usually be created directly. Various workload resources implement different operational patterns. The pod-managing resources described here are some times referred to as higher-level pod controllers or "templated controllers".

From the simplest to the most complex ones, the workload resources are Jobs, CronJobs, ReplicaSets, Deployments, DaemonSets and StatefulSets.

Jobs and CronJobs are aimed mainly at running individual pods, as part of one-off or repeated executions.

A ReplicaSet is a workload resource aimed at maintaining a stable set of replica Pods running at any given time, guaranteeing the availability of a specified number of identical Pods.

The Deployment is a resource that delegates to a ReplicaSet. The deployment enhances a ReplicaSet semantics with things like deployment strategy. An older, deprecated alternative to Deployments are ReplicationControllers.

StatefulSet is the workload API object used to manage stateful applications. DaemonSet

These controllers are part of and supervised by the controller manager.

Describe the relationship between pod, deployment, ReplicaSet and workload resources. Which one are controllers and which are not?

Controller

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.