Docker Compose is great for local dev, but Kubernetes needs manifests. The Docker Compose to Kubernetes Converter turns a compose file into Deployment and Service resources so you can move a stack to a cluster without hand-writing YAML.
Paste your compose file, choose a Service type, and the tool maps image, ports, environment and volumes into valid core/v1 and apps/v1 objects. Services that publish ports get a matching Service. The result is a single multi-document YAML.
Service names are sanitized to RFC 1123 labels. Problems are reported in a clear panel. Everything runs locally and nothing is uploaded.