Kubernetes

Kubernetes - Deployment Controller and why we create deployments

Sometime you must have heard about the application where multiple servers are running and an application is replicated on all servers to share the load of incoming requests. Its called load balancing by deploying multiple replicas of same application on all servers. 

Now, how would you do this in Kubernetes?

In Kubernetes , you no need to even ask to server team to setup this kind of deployment setup and it is too easy to do it. You just need to add few lines in your Kubernetes  configuration files. 

So, how Kubernetes  handling it?

Tags