Kubernetes Workload Resources

2023-08-10T01:54:35+00:00

Bookmarks Defining a Kubernetes Workload Resource Deployments ReplicaSet StatefulSets DaemonSet* Jobs CronJob Automatic Cleanup for Finished Jobs ReplicationController A workload is an application that can have one or more components running on Kubernetes. A Pod represents a set of running containers in the cluster. Kubernetes allows for declarative configuration of workloads and its components. This will allow the Control Plane to manage the creation, deletion, and modification of these Pods. The built-in APIs for managing workload resources are: Deployments - The most commonly used workload to run an [...]