Docker compose to Kubernetes migration

9/3/2017

Actually, my organisation is using the docker compose files and they want to migrate it to Kubernetes and they had a plan to use stackpoint.io for the Kubernetes, so what is the best procedure and steps to implement Kubernetes.

-- Dev-Ops User
docker
kubernetes

1 Answer

9/3/2017

Luckily this is a rather painless process. First you'd convert your compose files to Kubernetes manifests using kompose and typically would also need to manually adjust the mapping; suggest you create Helm charts here. Then, you would test them locally using Minikube and once you're satisfied, move into a prod environment. Also, think about where in your CI/CD pipeline you might need adaptations.

-- Michael Hausenblas
Source: StackOverflow