Workloads

Workloads View

The Workloads View provides complete management of your Kubernetes workloads.

Workloads overview
Pods list showing status, namespace, and node information

Overview

Manage all workload types:

  • Deployments
  • StatefulSets
  • DaemonSets
  • ReplicaSets
  • Jobs
  • CronJobs
  • Pods

Deployments

Viewing Deployments

Deployments list
List of deployments with replicas, status and age

The deployment list shows:

ColumnDescription
NameDeployment name
NamespaceKubernetes namespace
ReplicasReady/Desired count
AgeTime since creation
StatusCurrent state

Deployment Actions

Click on a deployment to:

  • Scale - Change replica count
  • Restart - Rolling restart
  • Edit - Modify YAML
  • Delete - Remove deployment

Creating a Deployment

Create deployment sidebar
YAML editor for creating a new deployment

Scaling

  1. Select the deployment
  2. Click Scale
  3. Enter desired replica count
  4. Click Apply

Or use the quick scale buttons (+/-).

Rolling Updates

View rollout status:

  • Current revision
  • Update progress
  • Rollback history

To rollback:

  1. Click Rollout History
  2. Select a revision
  3. Click Rollback

StatefulSets

Manage stateful applications:

  • Ordered pod creation/deletion
  • Stable network identities
  • Persistent storage

StatefulSet Details

  • Pod ordinal index
  • Volume claims per pod
  • Update strategy

DaemonSets

Ensure pods run on all (or selected) nodes:

  • Node selector
  • Tolerations
  • Update strategy

DaemonSet Status

  • Desired number scheduled
  • Current number scheduled
  • Number ready

Jobs

One-time Jobs

View completed and running jobs:

  • Completions
  • Parallelism
  • Duration
  • Success/Failure

CronJobs

Manage scheduled jobs:

FieldDescription
ScheduleCron expression
Last RunMost recent execution
Next RunScheduled execution
ActiveCurrently running jobs

Pods

Pod List

Filter and sort pods by:

  • Status
  • Namespace
  • Node
  • Labels

Pod Details

Click on a pod to see:

  • Container status
  • Resource usage
  • Events
  • Labels and annotations

Creating a Pod

Create pod sidebar
YAML editor for creating a new pod

Pod Actions

ActionDescription
LogsView container logs
ExecOpen terminal in container
DeleteRemove pod
DescribeFull pod description

Container Logs

Pod logs viewer
Real-time log viewer with auto-refresh
  • Real-time streaming
  • Download logs
  • Search within logs
  • Multi-container support

Exec into Container

  1. Select the pod
  2. Click Exec
  3. Choose container (if multiple)
  4. Terminal opens in browser

Creating Workloads

From YAML

  1. Click Create
  2. Paste or write YAML
  3. Click Apply

From Form

  1. Click Create
  2. Select workload type
  3. Fill in the form
  4. Click Create

Bulk Operations

Select multiple workloads to:

  • Delete
  • Scale (Deployments only)
  • Add labels

Filtering

Filter workloads by:

  • Namespace
  • Labels
  • Status
  • Name (search)

Next Steps