All Tools View Categories About Contact Privacy

Live Cluster Resource Viewer

Paste kubectl get -o yaml output and view your Kubernetes resources client-side.

No live connection is made. Paste a snapshot from kubectl get -o yaml - parsing happens entirely in your browser.
0
resources
Parsed resource listing will appear here.

About Live Cluster Resource Viewer

The Live Cluster Resource Viewer is a client-side scaffold. Paste the output of kubectl get ... -o yaml and it parses the text in your browser to list the resources (kind, name, namespace). It does NOT connect to a live cluster - you supply the snapshot yourself.

A small tolerant YAML parser (not js-yaml) reads the pasted text, including List documents and multi-document output. Nothing is uploaded.

Features

  • Client-only - parses pasted text, no connection.
  • Lists + docs - single resource, List, or --- separated.
  • Resource listing - kind / name / namespace.
  • Real parser - tolerant YAML subset, no external libs.
  • Copy / Download / Print - export the listing.

How to Use

  1. Run kubectl get ... -o yaml and copy the output.
  2. Paste it into the box.
  3. View the parsed resource list.

Examples

Example 1 - pods. Paste kubectl get pods -o yaml to list pods.

Example 2 - multi-doc. Paste several --- separated resources.

Benefits

  • No cluster - fully client-side.
  • Real parsing - not a stub.
  • Quick list - see what is in a snapshot.
  • Private - everything runs in the browser.
  • Copy, download or print - export where you need it.

Frequently Asked Questions

What does this do?
You paste the output of kubectl get ... -o yaml (a single resource, a List, or multiple --- documents) and the tool parses it in your browser to list the resources it found.
Does it connect to my cluster?
No. Everything is parsed locally from the text you paste. Nothing is uploaded and no cluster connection is made.
What input is supported?
Standard kubectl -o yaml output: one resource, a List with an items array, or several documents separated by ---.
What does it show?
A list of resources with kind, name and namespace, plus the parsed JSON you can inspect.
Is the parsing real?
Yes. A small tolerant YAML parser runs entirely in the browser; it is not js-yaml.
Can I copy the result?
Yes. Copy, download or print the parsed listing.