4

Is there any easy way to convert a docker-compose.yml file to Kubernetes file(s)?

THelper
  • 575
  • 6
  • 17
saif
  • 149
  • 6

2 Answers2

4

The original and most popular solution I've seen is kompose which does exactly as you are asking, converts the compose yaml file into kubernetes yaml files.

If you want to continue working with a compose.yml file for compatibility with other systems, then docker recently open sourced their compose on kubernetes solution that integrates directly into kubernetes.

BMitch
  • 3,290
  • 9
  • 18
0

This online tool will translate your compose file equivalent Kubernetes resources

enter image description here

anish
  • 101
  • 1