Is there any way to deploy multi-container application in K8S single node for production? Is there any way to deploy multi-container application in K8S single node for production? kubernetes kubernetes

Is there any way to deploy multi-container application in K8S single node for production?


It was already mentioned, you should not use single node setup in production environment.

You should not do that because, if your servers drops you have service offline. There is nothing to switch to, nothing that might continue the process that was being worked on.

If you still want to setup a single node Kubernetes cluster you can do that using kubeadm. I think this would be closest to production grade as you can get.

Other then that as an alternative you can play with Installing Kubernetes with Minikube or Install a local Kubernetes with MicroK8s.

It's up to you which one you will choose but you need to remember this should not be running as a production, this should be a lab or a test environment which if works as expected will be migrated into few node production grade cluster.

As for PaaS as a single node there is Dokku.

Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen.

And if you would consider using a cloud for PaaS, you can choose from AWS Cloud9, Azure App Service or Google App Engine.


Single node cluster is not recommended for production applications. You need scalability, high availability, fault tolerance for production apps. You must have more than one node to have these features.