You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-6Lines changed: 26 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,29 @@ UDEMY COURSE WITH DISCOUNTED - Step by Step Development of this repository -> ht
12
12
### Overall Picture
13
13
See the overall picture. You can see that we will have 3 microservices which we are going to develop and deploy together.
14
14
15
-

16
-
17
-
Basically we will implement e-commerce logic with only gRPC communication. We will have 3 gRPC server applications which are Product — ShoppingCart and Discount gRPC services. And we will have 2 worker services which are Product and ShoppingCart Worker Service. Worker services will be client and perform operations over the gRPC server applications. And we will secure the gRPC services with standalone Identity Server microservices with OAuth 2.0 and JWT token.
18
-
19
-
### ProductGrpc Server Application
20
-
First of all, we are going to develop ProductGrpc project. This will be Asp.Net gRPC Server Web Application and expose apis for Product CRUD operations.
15
+

16
+
17
+
### Shopping MVC Client Application
18
+
First of all, we are going to develop Shopping MVC Client Application For Consuming Api Resource which will be the Shopping.Client Asp.Net MVC Web Project. But we will start with developing this project as a standalone Web application which includes own data inside it. And we will add container support with DockerFile, push docker images to Docker hub and see the deployment options like “Azure Web App for Container” resources for 1 web application.
19
+
### Shopping API Application
20
+
After that we are going to develop Shopping.API Microservice with MongoDb and Compose All Docker Containers.
21
+
This API project will have Products data and performs CRUD operations with exposing api methods for consuming from Shopping Client project.
22
+
We will containerize API application with creating dockerfile and push images to Azure Container Registry.
23
+
### Mongo Db
24
+
Our API project will manage product records stored in a no-sql mongodb database as described in the picture.
25
+
we will pull mongodb docker image from docker hub and create connection with our API project.
26
+
At the end of the section, we will have 3 microservices whichs are Shopping.Client — Shopping.API — MongoDb microservices.
27
+
As you can see that, we have
28
+
* Created docker images,
29
+
Compose docker containers and tested them,
30
+
Deploy these docker container images on local Kubernetes clusters,
31
+
Push our image to ACR,
32
+
Shifting deployment to the cloud Azure Kubernetes Services (AKS),
33
+
Update microservices with zero-downtime deployments.
34
+
### Deploy to Azure Kubernetes Services (AKS) through CI/CD Azure Pipelines
35
+
And the last step, we are focusing on automation deployments with creating CI/CD pipelines on Azure Devops tool. We will develop separate microservices deployment pipeline yamls with using Azure Pipelines.
36
+
When we push code to Github, microservices pipeline triggers, build docker images and push the ACR, deploy to Azure Kubernetes services with zero-downtime deployments.
By the end of this articles, you’ll learn how to deploy your multi-container microservices applications with automating all deployment process seperately.
0 commit comments