Show HN: Go from Docker-Compose to Kubernetes with a simple tool
1–10 of 47 posts
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#2Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#3Hoping this helps with the Kubernetes learning curve. We've just started migrating and keeping track of the terminology has been tough.
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#4The result was sufficiently confusing that we threw it away, but it was helpful to get an idea what we were looking at, and why. We rebuilt the stack from hand, using all the files from the kompose tool as a guide/reference.
Later we found that kubectl can dump yaml, I found `kubectl .... -o=yaml[ ...]` to be super helpful, for any command you run from the tutorial or elsewhere, it'll generate you the equivalent YAML which you can commit/apply at your leisure.
I'm glad the tool existed, but idiomatic stuff in docker-compose is unidomatic in k8s (namely secret handling is completely different) which is a hurdle, and the "links" concept as used in docker-compose is essentially absent from k8s for our purposes (and, replaced wth much, much better and granular dns services and "expose"s)
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#5Hoping this helps with the Kubernetes learning curve. We've just started migrating and keeping track of the terminology has been tough.
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#6Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#7Hoping this helps with the Kubernetes learning curve. We've just started migrating and keeping track of the terminology has been tough.
agreed, it's surprisingly hard to get your head around initially. minikube helps me personally.
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#8Hoping this helps with the Kubernetes learning curve. We've just started migrating and keeping track of the terminology has been tough.
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#9One of the nice side effects of this tool will be mapping existing Compose knowledge into the Kubernetes config model. It's like a mini translator.
I have a feeling that this will make a big difference in the usage of MiniKube.
Re: Show HN: Go from Docker-Compose to Kubernetes with a simple tool
#10Hoping this helps with the Kubernetes learning curve. We've just started migrating and keeping track of the terminology has been tough.
https://hackernoon.com/what-is-micro-paas-and-why-its-the-fu...