Monday, August 17, 2020

How to develop Cloud Native App?

10 rules to build cloud native app:

  1. Application should be platform independent i.e. use dot net core 
  2. Follow domain driven design (DDD) approach to develop app
  3. All the services should be design as micro services 
  4. All the microservices should be light weight i.e. REST 
  5. All the micro services should be API based 
  6. Internal communication across micro services thought event base, asynchronous integration or asynchronous HTTP polling  
  7. App should be containerized hosted
  8. Monitoring operation integration i.e. kubernetes 
  9. DevOps: automation when code check-in; code should build , test and deploy in production
  10. Complete functional testing should be automated   

No comments:

Post a Comment

Azure Function or Serverless Function

In this blog I covered what is Azure function? Why to use azure function? How to create azure function from azure portal and how to pass pa...