Kubernetes Helm Chart Validator

Check a chart's metadata, its values and its values.schema.json against each other. It does not render templates, which is what helm template is for and what no linter can do.

Optional, and the most useful thing a chart can add: a schema is enforced on every install, so it catches a bad override before anything renders.

Paste below, or drop a file anywhere on this panel

Or drop a file anywhere on this panel. Nothing is uploaded: the analysis runs in this tab.

The answer appears here

Paste on the left and press Check. Nothing leaves this tab.

Examples

Real input you can load into the tool above. Each one shows a different thing going wrong, because that is what the tool is for.

A minimal Chart.yaml

The fields Helm requires, and the ones it silently accepts as missing

apiVersion: v1
name: web
version: 1.0.0

An apiVersion v2 chart

Dependencies moved into Chart.yaml in v2, which changes what requirements.yaml means

apiVersion: v2
name: web
version: 1.0.0
type: application
dependencies:
  - name: redis
    version: 17.x.x
    repository: https://charts.bitnami.com/bitnami

Common mistakes

These are the ones that fail silently. The config is accepted, nothing raises an error, and the consequence arrives later.

  1. Mixing apiVersion v1 and v2 conventions

    Dependencies live in requirements.yaml for v1 and in Chart.yaml for v2. A v2 chart with requirements.yaml silently ignores it.

    Instead:Set apiVersion: v2 and put dependencies in Chart.yaml.

  2. Using a version that is not semver

    Helm requires semver for version. A value like 1.0 is rejected on package.

    Instead:Use three components.

  3. Confusing version and appVersion

    version is the chart's, appVersion is the application's. Bumping only appVersion means the chart never changes for Helm.

    Instead:Bump version on every chart change.

version must be SemVer 2 and appVersion need not be

They are different fields with different rules. Helm refuses a chart whose `version` is not SemVer 2 exactly, and accepts almost anything in `appVersion`, which is why the two look interchangeable and are not.

appVersion needs quoting or YAML changes it

`appVersion: 1.10` parses as a number, so it becomes 1.1, and `1.0` becomes 1. The value that reaches your templates is not the one written in the file, and nothing warns. `helm create` quotes it by default for exactly this reason.

kubeVersion is a constraint, not a version

A bare `kubeVersion: 1.29` means exactly 1.29 and nothing else, so the chart refuses to install on 1.29.4. Write a range. The `-0` in `>=1.29.0-0` matters too: SemVer sorts a pre-release below its release, so without it the constraint rejects pre-release and some managed-distribution builds.

What this cannot see

The templates. Whether the chart produces valid Kubernetes objects is a different question and only `helm template` answers it, because rendering needs the whole chart directory. The Go template tester on this site renders a single template against values, which covers the common case of one file being wrong.

More kubernetes tools

Kubernetes YAML Generator Answer a few questions, get a manifest Kubernetes YAML Validator Is this YAML valid, and where is it wrong? Kubernetes Rollout & Probe Timing Restart loops, capacity dips and stuck drains Kubernetes Service Checker Will this Service have any endpoints? Kubernetes Network Policy Viewer What can reach what, and what just broke Kubernetes Manifest Diff What actually changed Kubernetes Resource Calculator What these manifests actually reserve Kubernetes RBAC Viewer Who can actually do what Kubernetes Deployment Generator See the capacity dip before you deploy Kubernetes Service Generator port, targetPort, and which one you meant Kubernetes StatefulSet Generator Stable names, and volumes that outlive you Kubernetes QoS Class Calculator And where you sit in the eviction order Kubernetes Node Capacity Planner Allocatable is not capacity Kubernetes Max Pods per Node Calculator The ENI limit, not the 110 default Kubernetes Label Selector Tester Which key failed, not just that one did Kubernetes Taint & Toleration Tester Tolerations permit, they do not attract Kubernetes Resource Name Validator RFC 1123 subdomain, label, or 1035 Kubernetes Label & Annotation Validator Why your image tag is not a legal label Kubernetes CrashLoopBackOff Guide The status is a timer, not a cause Kubernetes TLS Certificate Decoder When it expires, and what it covers Kubernetes ServiceAccount Token Decoder Bound or legacy, and when it dies Kubernetes imagePullSecret Generator The registry URL nobody gets right Kubernetes cert-manager Certificates Issuer scope, and the rate limit that costs a week Kubernetes Flux HelmRelease Generator With the source it cannot work without Kubernetes Helm Chart Generator Chart.yaml, values, and working templates Kubernetes Argo CD Application Generator The defaults that are off, turned on Kubernetes Ingress Generator pathType, and the TLS secret that fails quietly Kubernetes HPA Generator Why it says unknown and never scales Kubernetes SecurityContext Generator Pod level, container level, and which wins Kubernetes Probe Generator How long it gets to start before liveness kills it Kubernetes PVC Generator Access modes your storage can actually do Kubernetes ResourceQuota Generator And the LimitRange that stops it breaking deploys Kubernetes CronJob Generator The fields that decide whether it runs Kubernetes NetworkPolicy Generator With the DNS rule already in it Kubernetes RBAC Generator And what it actually grants Kubernetes PodDisruptionBudget Generator Can this budget ever be satisfied? Kubernetes API Deprecation Checker What breaks on the next upgrade Kubernetes Kubeconfig Viewer Read it without handing it to anyone Kubernetes Quantity Parser What 512Mi, 100m and 1e3 actually mean Kubernetes Multi-Document YAML Splitter One file per object, in apply order Kubernetes .env to ConfigMap & Secret Split the credentials out on the way Kubernetes Secret Decoder See what is actually in there Kubernetes Ingress to Gateway API Which annotations silently stop working Kubernetes Manifest Visualizer What points at what, and what points at nothing Kubernetes Patch Tester Which --type, and what it deletes Kubernetes kubectl JSONPath Tester kubectl's dialect, not generic JSONPath Kubernetes Node Affinity Tester Required excludes, preferred only scores Kubernetes Helm Values Diff A missing key is a third value Kubernetes Pod and Service CIDR Fixed at cluster creation Kubernetes Secret Encoder base64 is not encryption Kubernetes API Version Checker Will this apply on that cluster Kubernetes Go Template Tester Go truthiness is not JavaScript's Kubernetes Cluster Cost Estimator At your rates, not a price table Kubernetes Kustomize Build Transformers run in kustomize's order

Elsewhere on the site