Kubernetes Pod & Workload Management

Different types of applications and processes that are run and managed on a Kubernetes cluster.

Cron Jobs

A resource that runs Jobs at regular, scheduled intervals.

Daemon Sets

Ensures that a copy of a Pod is running across a set of nodes in Kubernetes.

Deployment Files

Configuration files, typically in YAML format, defining how Kubernetes resources are deployed.

Helm Charts

Tool for managing Kubernetes packages, known as charts, to define, install, and upgrade complex Kubernetes applications.

Jobs

A resource designed for executing one or more Pods that run to completion

Pods

The smallest deployable unit in Kubernetes that can host one or more containers.

Replica Sets

Used to guarantee the availability of a specified number of identical Pods

Stateful Sets

Workload API used in Kubernetes for managing stateful applications.

Workloads

Describe the objects that manage and run containers on the cluster.

Last modified July 21, 2024: update (e2ae86c)