it-tools
it-tools copied to clipboard
[NEW TOOL] Docker command to Kubernetes kustomization
What tool do you want?
There's already a tool to convert a docker run command into a docker-compose configuration. It would be nice to convert such a command into pure Kubernetes manifests, and maybe even provide a kustomization config for all of these manifests.
Describe the solution you'd like
Similarly, like the docker converter, one should be able to supply a docker run command, and it results in a YAML file containing all the different Kubernetes manifests.
Is their example of this tool in the wild? There's kompose.io, which can convert a docker-compose file into Kubernetes manifests, so currently one could chain these tools together.
Hi @TheAnachronism, will look to implement this (since I did many improvment to composerize.com and corresponding tool) By the way, not sure to know what is "kustomization config"
Hey there, thanks for having a look. With kustomize, I mean: https://kustomize.io/
Its a way to easily group and patch kubernetes manifests.
Hi @TheAnachronism and @CorentinTh , found docker2kube on npm (which also use composerize), implemented in #889 and #890