Lint & Render¶
Lint¶
Validate your spec without touching the cluster:

Lint catches:
- Missing required fields (
image,port) - Invalid type values
- Duplicate component names
- YAML/Python syntax issues
Lint multiple specs:
helm-me lint examples/minimal/deploy.yaml
helm-me lint examples/full/deploy.yaml
helm-me lint examples/with_dbs/deploy.yaml
Render¶
Preview the exact Kubernetes manifests that will be applied:

Pipe to kubectl¶
Render Python Specs¶
Render with Parameters¶
Compare with a Live Cluster (diff)¶
Use the dedicated diff command for a streamlined pre-deploy check:
Or pipe render output manually:
Tip
Use render or diff in CI to catch changes before they reach the cluster.