Member-only story
Create a Simple Microservices Kubernetes, Docker— (Part 1)
Microservices are completely disrupting the way we build applications nowadays. The term has sprung up over last few years and has been increasingly being adopted by and discussed among developers. The real questions lie with what they are, how they work, etc, and hence I am putting my thoughts out there.
Table Of Contents
Part 1 gives you a heads up on microservices architecture and the technologies behind them. Part 2 focuses more on the implementation.
- What are Microservices?
- Monolithic vs. Microservices Architecture
- Relationship between Microservices , Docker and Kubernetes
- How to create a simple Microservices?
What are Microservices
Implementing microservices means building small, independent services such as authentication, search, weather, etc, loosely coupled, communicating with each other in an asynchronous manner. Under the microservices architecture, a software application is divided into several standalone service, each representing a separate business domain.
Microservices provides a way to adopt to newer technology and walk away from the legacy code, which enables dev team with more freedom to choose on…