Kubernetes Part - II
Microservices.... In functionality having an separate service application will be more flexible and those services were loosely coupled, then we can able to easily deploy the application into production. and also if you want to change or an bug fix in a separate service you can able to fix and deploy it on server, because they are independent applications. also each microservices has own it's DB, and if you are deploying an monolithic application you need to build and deploy the whole code into server and it takes some time, but in microservices has separate service/application so easily build and deploy in few mins, also each service can run with different languages, like business layer is written on spring and roue services were write at angular, like that we can write different languages. How to convert an Monolithic to Microservice Application....? At first you need to break your monolithic application into major services, like consider you have 10 services that curren...