Skip to content

Workloads

Workloads lists pods and deployments returned by kubectl for the selected Kubernetes-enabled Colima profile.

ColimaStack Workloads screenshot

  • Pods: name, namespace, node, and phase.
  • Deployments: name, namespace, ready replicas, desired replicas, and updated replicas.
  • Health coloring based on pod phase/readiness and deployment replica availability.

Pods and deployments are queried across all namespaces.

  1. Enable Kubernetes for the selected profile.
  2. Make sure the profile is running.
  3. Create or run workloads in the cluster.
  4. Click Refresh.

Example terminal check:

Terminal window
kubectl get pods --all-namespaces
kubectl get deployments --all-namespaces

The view is read-only in the current source. It does not scale, restart, delete, describe, or stream logs for workloads.

  • Workloads unavailable: Colima diagnostics need to complete.
  • No profile selected: select a profile first.
  • Kubernetes is disabled: enable Kubernetes on the selected profile.
  • No pods reported by kubectl: no pods were returned or the command failed.
  • No deployments reported by kubectl: no deployments were returned or the command failed.
  • Search-specific empty states mean local filtering matched no rows.

Kubernetes metrics are collected with kubectl top, but this page primarily lists resource state. Metrics may be unavailable when the cluster does not have metrics support.

Terminal window
kubectl --context <context> get pods --all-namespaces -o json
kubectl --context <context> get deployments --all-namespaces -o json
kubectl --context <context> top pods --all-namespaces --no-headers

See Command API, Compatibility, and Diagnostics.