You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/platform/guides/cluster-management/cluster-workload.md
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,14 +26,18 @@ Every list page in this group follows the same layout: a 🔍 search box, an **A
26
26
27
27
## Deployments
28
28
29
-
Lists every Deployment with its Namespace, Pods (ready count), Images, and Age.
29
+
A Deployment keeps a set number of identical app copies running and handles rolling updates — it's the standard way to run and update a stateless app. Use this page when you need to check rollout status, scale an app up/down, or push a new image version.
30
+
31
+
Lists every Deployment with its Namespace, Pods (ready count), Images, and Age. Click a row to view or edit it; use **+ Create** to deploy a new one.
30
32
31
33

32
34
33
35
---
34
36
35
37
## Replica Sets
36
38
39
+
A Replica Set's only job is to keep a fixed number of Pod copies alive. You rarely create these by hand — a Deployment creates and manages one for you behind the scenes. Check this page when troubleshooting why a Deployment isn't scaling the way you expect.
40
+
37
41
Lists every Replica Set with its Namespace, Pods, Images, and Age.
38
42
39
43

@@ -42,6 +46,8 @@ Lists every Replica Set with its Namespace, Pods, Images, and Age.
42
46
43
47
## Replication Controllers
44
48
49
+
The older, legacy way to keep a fixed number of Pod copies running — same idea as a Replica Set, kept for backward compatibility. New workloads should use Deployments instead; you'd only see entries here on older setups.
50
+
45
51
Lists every Replication Controller with its Namespace, Pods, Images, and Age. Click **+ Create ReplicationController** to add one.
46
52
47
53

@@ -50,6 +56,8 @@ Lists every Replication Controller with its Namespace, Pods, Images, and Age. Cl
50
56
51
57
## Stateful Sets
52
58
59
+
For apps where each Pod needs a stable identity and its own storage — databases, queues, anything that can't just be swapped for an identical copy. Use this when running stateful services that care about pod order or persistent data.
60
+
53
61
Lists every Stateful Set with its Namespace, Pods, Images, and Age.
54
62
55
63

@@ -58,14 +66,18 @@ Lists every Stateful Set with its Namespace, Pods, Images, and Age.
58
66
59
67
## Daemon Sets
60
68
61
-
Lists every Daemon Set with its Namespace, Pods, Dsired, Current-Scheduled, Up-to-date, Node Selector, Images, and Age.
69
+
Runs one copy of a Pod on every node automatically — typically used for cluster-wide infrastructure like log collectors or monitoring agents that need to run everywhere. Check this page to confirm a node-wide agent has rolled out to all nodes.
70
+
71
+
Lists every Daemon Set with its Namespace, Pods, Dsired, Current-Scheduled, Up-to-date, Node Selector, Images, and Age — the Desired/Current/Up-to-date columns show rollout progress at a glance.
62
72
63
73

64
74
65
75
---
66
76
67
77
## Jobs
68
78
79
+
A Job runs a task once until it completes — a backup, a migration script, a one-off batch process — then stops, unlike a Deployment which runs forever. Use this page to check whether a one-off task finished and how long it took.
80
+
69
81
Lists every Job with its Namespace, Annotations, Completions, Duration, Images, and Age.
70
82
71
83

@@ -74,15 +86,19 @@ Lists every Job with its Namespace, Annotations, Completions, Duration, Images,
74
86
75
87
## Cron Jobs
76
88
77
-
Lists every Cron Job with its Namespace, Annotations, Schedule, Suspend, Active, Last Schedule, Images, and Age.
89
+
A Cron Job runs a Job on a repeating schedule — like a nightly backup or a recurring cleanup task — so you don't have to trigger it manually each time. Use the **Suspend** state here to pause a recurring task without deleting it.
90
+
91
+
Lists every Cron Job with its Namespace, Annotations, Schedule, Suspend, Active, Last Schedule, Images, and Age — the Schedule column shows the cron expression.
78
92
79
93

80
94
81
95
---
82
96
83
97
## Pods
84
98
85
-
Lists every Pod with its Namespace, Ready, Status, Restarts, IP, Images, and Age — the only Workloads item with these extra live-state columns.
99
+
A Pod is the actual running container(s) — the smallest unit in Kubernetes. Every Deployment, StatefulSet, Job, etc. above ultimately creates Pods to do the real work. This is the page to check when you need to see real-time container health or debug a crash.
100
+
101
+
Lists every Pod with its Namespace, Ready, Status, Restarts, IP, Images, and Age — the only Workloads item with these extra live-state columns, useful for spotting crashing or restarting containers.
86
102
87
103

0 commit comments