Bosca / Kubernetes

Workloads

Run the workloads, watch the logs

Every Deployment, StatefulSet, and CronJob in the cluster — scale, restart, and delete from the table, stream a pod's logs as they happen, and apply a manifest when you need to change something.

The work

Scale, restart, delete

Deployments, StatefulSets, DaemonSets, ReplicaSets, Jobs, and CronJobs all sit in one table — with replicas, status, image, and restarts. Scale a workload to a new replica count, roll a restart through its pods, or delete it — right from the row. These take effect immediately, so there's no dry-run to hide behind.

  • Every workload kind, from Deployment to CronJob, in one place.
  • Scale to a new replica count from the row or the detail page.
  • Roll a workload's pods with a restart, one at a time.
  • Delete a workload and its pods when you mean to.
workload · web
kindDeployment
replicas3 / 3
imageghcr.io/app:6.1
actionsscale · restart · delete

Live pod logs

Logs as the pod writes them

Open a pod and its logs stream in over a live connection, following the tail — while its CPU and memory tick alongside, in real time. Pause the view to read, clear the buffer, and let it reconnect on its own if the connection blips. Need a pod gone? Delete it, and its controller brings a fresh one back.

  • Live log streaming, following the tail as lines arrive.
  • Pod CPU and memory ticking in real time beside the logs.
  • Pause and clear the view; the stream reconnects on its own.
  • Delete a pod — its controller replaces it.
pod · web-7c9 · logsstreaming
12:04:01 GET /api/health 200 3ms
12:04:01 worker picked up job 4821
12:04:02 GET /api/feed 200 41ms
12:04:02 POST /api/track 202 2ms

Apply

Change it with a manifest

When a workload needs more than a scale or a restart, apply a manifest. A YAML editor sends it straight to the active cluster — the same path that scales and restarts run on, gated to admins at every layer, with an optional server-side dry-run. Jobs and CronJobs work the same way.

  • Apply raw YAML straight to the active cluster.
  • The same admin-gated path as scale, restart, and delete.
  • Create a CronJob from a manifest.
  • View a workload's live manifest on its detail page.
workload actions
Scaleset desired replicas
Restartrolling restart
Deleteremove workload
or apply a manifest · admin-gated

Keep exploring

More on Kubernetes