DEV Community

Discussion on: Building Small Containers for Kubernetes

Collapse
 
lysofdev profile image
Esteban Hernández

Great post! Question. Do you use Kubernetes as part of your development tools? Starting up development services and such. Or is it more for deployment stages?

I use docker-compose to manage my development services but I'm wondering if I'm better off use kubectl and such instead.

Collapse
 
codehakase profile image
Francis Sunday

Thanks Esteban! For development, I use docker + minikube. You can also use Kompose to spin off a kubernetes deployment from a docker-compose file.

Collapse
 
qbisson profile image
Quentin Bisson

Have you considered using skaffold with your minikube ?

Thread Thread
 
codehakase profile image
Francis Sunday

Not really, but will check it out. Thanks