> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pastures.farm/llms.txt
> Use this file to discover all available pages before exploring further.

# Workloads

> Deployments, StatefulSets, DaemonSets, Jobs, and CronJobs overview with status tracking.

The Workloads page provides a unified view of all workload types in the selected cluster, organized by type tabs.

<Info>
  This page is demo-only — no Engine API calls are made. Logs and Details buttons show a toast notification in demo mode.
</Info>

## Workload type tabs

The page is tabbed by workload type, each showing a count badge:

* **Deployments** — ReplicaSet-backed application workloads
* **StatefulSets** — stateful application workloads with stable identity
* **DaemonSets** — node-level agents and system daemons
* **Jobs** — one-off batch workloads
* **CronJobs** — scheduled recurring workloads

## Workload table

Each tab displays a table with:

| Column    | Description                               |
| --------- | ----------------------------------------- |
| Name      | Workload resource name                    |
| Namespace | Kubernetes namespace                      |
| Status    | Ready, Progressing, Degraded, or Complete |
| Replicas  | Ready / desired replica count             |
| Age       | Time since creation                       |
| Actions   | **Logs** and **Details** buttons          |

Status indicators use color coding: green for healthy, yellow for progressing, red for degraded.

## API path

A collapsible **API Path** section displays the Kubernetes API path for the selected workload type. This is useful for building automation or debugging API access:

```
/apis/apps/v1/namespaces/{namespace}/deployments/{name}
```
