From 4d560ae0da7617871ff0a3304c0aaff813d93161 Mon Sep 17 00:00:00 2001 From: Ranjan <73215366+ranjan2829@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:10:54 +0530 Subject: [PATCH] Create workload.md --- .../hi/docs/reference/glossary/workload.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 content/hi/docs/reference/glossary/workload.md diff --git a/content/hi/docs/reference/glossary/workload.md b/content/hi/docs/reference/glossary/workload.md new file mode 100644 index 0000000000000..f2fabbab77ed6 --- /dev/null +++ b/content/hi/docs/reference/glossary/workload.md @@ -0,0 +1,22 @@ +--- +title: Workload +id: workloads +date: 2019-02-13 +full_link: /docs/concepts/workloads/ +short_description: > + A workload is an application running on Kubernetes. + +aka: +tags: +- fundamental +--- + A workload is an application running on Kubernetes. + + + +Various core objects that represent different types or parts of a workload +include the DaemonSet, Deployment, Job, ReplicaSet, and StatefulSet objects. + +For example, a workload that has a web server and a database might run the +database in one {{< glossary_tooltip term_id="StatefulSet" >}} and the web server +in a {{< glossary_tooltip term_id="Deployment" >}}.