2019-02-17 16:39:11 +00:00
|
|
|
---
|
2019-04-19 16:25:56 +00:00
|
|
|
title: Workloads
|
|
|
|
id: workloads
|
|
|
|
date: 2019-02-13
|
2019-02-17 16:39:11 +00:00
|
|
|
full_link: /docs/concepts/workloads/
|
|
|
|
short_description: >
|
2019-04-19 16:25:56 +00:00
|
|
|
Workloads are objects you use to manage and run your containers on the cluster.
|
2019-02-17 16:39:11 +00:00
|
|
|
|
2019-04-19 16:25:56 +00:00
|
|
|
aka:
|
2019-02-17 16:39:11 +00:00
|
|
|
tags:
|
2019-04-19 16:25:56 +00:00
|
|
|
- fundamental
|
|
|
|
- core-object
|
2019-02-17 16:39:11 +00:00
|
|
|
- workload
|
|
|
|
---
|
2019-04-19 16:25:56 +00:00
|
|
|
Workloads are objects you use to manage and run your containers on the cluster.
|
2019-02-17 16:39:11 +00:00
|
|
|
|
2019-04-19 16:25:56 +00:00
|
|
|
<!--more-->
|
2019-02-17 16:39:11 +00:00
|
|
|
|
2019-04-19 16:25:56 +00:00
|
|
|
Kubernetes performs the
|
|
|
|
deployment and updates the workload with the current state of the application.
|
|
|
|
Workloads include the DaemonSet, Deployments, Jobs, Pods, ReplicaSet, ReplicationController, and StatefulSet objects.
|
2019-02-17 16:39:11 +00:00
|
|
|
|
|
|
|
For example, a workload that has a web element and a database element might run the
|
|
|
|
database in one {{< glossary_tooltip term_id="StatefulSet" >}} of
|
|
|
|
{{< glossary_tooltip text="pods" term_id="pod" >}} and the webserver via
|
|
|
|
a {{< glossary_tooltip term_id="Deployment" >}} that consists of many web app
|
|
|
|
{{< glossary_tooltip text="pods" term_id="pod" >}}, all alike.
|
|
|
|
|