Blue-green deployment involves simultaneously operating two application environments within a production cluster. In this deployment approach, the stable version of the application is deployed in the first environment (blue), while the new version is deployed in the second environment (green). By default, Kubernetes performs a rolling update of a deployment. As part of the rollout […]
Microservices
What is Docker ? How its different from Virtual Machine ?
What is Docker? Docker is a container run time engine. Docker provides the power of operating system using minimal resources. Docker support application development in monolithic situations. In other words, developers can develop the applications, ship the container and deploy it anywhere. The destination could be a virtual machine, physical server or cloud instances (AWS, […]

