Dev Tools

MCP

Kubernetes Tools

Inspect, diff, and split Kubernetes YAML. We do not talk to your cluster or read kubeconfig.

5 tools · 100% browser-based · No uploads · No signup

About these Kubernetes tools

Kubernetes tools inspect manifests, diff resources, split multi-document YAML, sketch a Helm chart from YAML, and check apiVersion deprecations for a target cluster version. They do not talk to your cluster. No kubeconfig is uploaded.

Use them on a train or in a browser when installing kubectl plugins is not worth it. Apply and dry-run still belong on a machine with credentials. API deprecation data is a snapshot; confirm against the Kubernetes version you actually run.

Tools in this category

How these tools run in your browser

Manifests are parsed as YAML documents. Inspector looks at apiVersion, kind, and metadata. Diff is resource-aware when names match. Helm export templatizes obvious values; it will not produce a chart you should ship without review. API checker compares against a built-in deprecation table.

Common Use Cases

  • See kind, name, and missing required fields in a pasted manifest
  • Compare two Deployment YAML files after a change
  • Split a single file with --- into one file per resource
  • Get a head start on Helm values from existing YAML
  • Check whether networking.k8s.io/v1beta1 still exists on 1.25+

Common Mistakes

CRDs are not in the core deprecation table.
Helm conversion will not handle every helper, hook, or lookup.
Diff does not apply strategic merge patch semantics used by kubectl apply.
A valid manifest can still be rejected by admission webhooks you do not see here.

Frequently Asked Questions

Can this replace kubectl explain?

No. It is a quick inspect. Use kubectl explain and the official docs for field-level schema.

Do you access my cluster?

No. There is no API server call from these pages.

Which Kubernetes version is the deprecation table for?

Pick the version in the API checker UI. When in doubt, match kubectl version on the cluster, not your laptop.