Kubernetes Tools — Manifests, Ingress & Helm Values
Five browser-based Kubernetes utilities: format and structurally validate multi-document manifests, scaffold Ingress and Deployment YAML, and pretty-print Helm values.yaml. Sibling of the DevOps hub. Also useful: beautify YAML and validate Docker Compose.
- Format multi-document manifests and Helm values.yaml.
- Scaffold Ingress or Deployment YAML starters.
- Run structural manifest checks before kubectl apply.
Format Kubernetes YAML
Pretty-print multi-document Kubernetes YAML with indent 2 or 4 — comments dropped.
Validate Kubernetes YAML
Structural checks for apiVersion, kind, metadata, and kind-specific rules — not cluster dry-run.
Generate Kubernetes Ingress
Scaffold networking.k8s.io/v1 Ingress from host, path, and Service — pair with generate Deployment.
Generate Kubernetes Deployment
Scaffold apps/v1 Deployment from image, replicas, and port — pair with generate Ingress.
Format Helm values.yaml
Pretty-print Helm values.yaml; rejects K8s manifests — does not run helm template.
Guides

Dockerfile Lint and Format Online: A Practical Hadolint Guide
Catch Docker anti-patterns and format Dockerfiles before CI with browser-based lint and format tools.

Terraform and HCL: Format, Validate and Minify Files Online
Format and validate HCL/Terraform before `terraform plan`. Browser-based tools, IaC best practices and common pitfalls.

Automate Minification in CI/CD (GitHub Actions, GitLab CI)
Learn how to integrate JavaScript and CSS minification into your CI/CD pipelines. Concrete examples with GitHub Actions and GitLab CI for optimized deployments.