list_resources
List Kubernetes resources by kind to compare multiple objects with summary context for issue detection and suspect ranking before deeper inspection.
Instructions
Use for a jq-like namespace sweep when you know the resource kind (pods/po, deployments/deploy, services/svc, configmaps/cm, CRDs). Returns compact Kubernetes-shaped rows plus summaryContext by default (managedBy, health, issueCount) so you can compare many similar resources and pick suspects before calling get_resource. For unknown kind/name searches, use search. For broad health triage, use get_dashboard or issues first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | resource kind to list for a broad sweep, e.g. pods/po, deployments/deploy, services/svc, configmaps/cm. Prefer this before get_resource when comparing many same-kind objects. | |
| group | No | API group when the kind is ambiguous (e.g. serving.knative.dev for Knative Service vs core Service) | |
| namespace | No | filter to a specific namespace for app-scoped triage | |
| context | No | per-row context: default attaches summaryContext (managedBy + health + issueCount) for suspect ranking; 'none' returns bare rows |