This repo is used for my 66 blog post series "Microservices - From Zero to Hero". It started out as .NET Core 3.1 project and has been upgraded to .NET 6 since then. The following tools and technologies are used:
- .NET 6
- Swagger
- Asynchronous messaging using RabbitMQ and Azure Service Bus
- Azure Functions
- CI/CD YAML pipelines
- Docker
- Helm
- Kubernetes
- KEDA
- AAD authentication
For more details, see the corresponding blog posts.
The following posts explain the theory behind microservices and how to set up your first two .NET 6 (originally .NET Core 3.1) microservices. Both microservices use the mediator pattern and communicate via RabbitMQ.
This section is all about automated builds using YAML pipelines in Azure DevOps. Starting with a simple .NET Core pipeline, the pipeline switches to building Docker images and then runs xUnit tests inside the Docker container. Another topic of this section is automated versioning of Docker images and lastly splitting up the pipeline into smaller chunks using templates.
After building the Docker images, let's focus on deploying these images to Kubernetes. Each pull request gets deployed into a new namespace, SSL certificates, and a unique URL is generated and Helm is used to manage the deployment. Using Helm allows overriding configuration values. Furthermore, this section explains how to deploy Azure Functions, and SQL Databases and push NuGet packages to an internal or public feed.
-
Deploy to Azure Kubernetes Service using Azure DevOps YAML Pipelines
-
Replace Helm Chart Variables in your CI/CD Pipeline with Tokenizer
-
Deploy Microservices to multiple Environments using Azure DevOps
-
Deploy every Pull Request into a dedicated Namespace in Kubernetes
-
Automatically set Azure Service Bus Queue Connection Strings during the Deployment
-
Deploy a Docker Container to Azure Functions using an Azure DevOps YAML Pipeline
-
Publish NuGet Packages to Nuget.org using Azure DevOps Pipelines
-
Automatically Deploy your Database with Dacpac Packages using Linux and Azure DevOps
The following posts explain Microsoft's Azure Kubernetes Service and why Helm is useful for your deployments. After the basics, more advanced topics like Ingress controller, automated SSL certificate installation, and KEDA are discussed.
-
Auto-scale in Kubernetes using the Horizontal Pod Autoscaler
-
Debug Microservices running inside a Kubernetes Cluster with Bridge to Kubernetes
-
Configure custom URLs to access Microservices running in Kubernetes
-
Automatically issue SSL Certificates and use SSL Termination in Kubernetes
Kubernetes helps to automatically create Let's Encrypt SSL certificates and Nginx as Ingress controller allows the creation of unique URLs for each microservice.
-
Configure custom URLs to access Microservices running in Kubernetes
-
Automatically issue SSL Certificates and use SSL Termination in Kubernetes
NuGet packages allow sharing of code between microservices. Additionally, the versioning of these packages gives developers full control over the version they are using and when they want to upgrade to newer versions.
-
Restore NuGet Packages from a Private Feed when building Docker Containers
-
Publish NuGet Packages to Nuget.org using Azure DevOps Pipelines
Deploying database changes has always been a pain. Using dacpac packages allows developers or database administrators to easily deploy their changes to an existing database, or create a new one with a pre-defined schema and optionally with test data. Docker also comes in handy when trying to deploy the dacpac package using Linux. Since Azure DevOps doesn't support deploying dacpacs on Linux, a custom Docker container is used to deploy the dacpac.
The Azure Container Registry is a private repository in Azure. Since it is private, Kubernetes needs an Image pull secret to be able to download images from there. Additionally, this section shows how to replace RabbitMQ with Azure Service Bus Queues and how to replace the .NET background process with Azure Functions to process messages in these queues.
Azure Functions can be used to process messages from queues and can be deployed as a Docker container or as .NET 6 application.
Infrastructure as Code (IaC) allows developers to define the infrastructure and all its dependencies as code. These configurations are often stored in YAML files and have the advantage that they can be checked into version control and also can be deployed quickly using Azure DevOps. Another aspect of operating a Kubernetes infrastructure is logging and monitoring with tools such as Loki or Prometheus.
-
Use Infrastructure as Code to deploy your Infrastructure with Azure DevOps
-
Collect and Query your Kubernetes Cluster Logs with Grafana Loki
Big Kubernetes clusters can be hard to manage. Service Mesh like Istio helps administrators to manage Kubernetes clusters with topics such as SSL connections, monitoring, or tracing. All that can be achieved without any changes to the existing applications. Isitio also comes with a bunch of add-ons such as Grafana, Kiali, and Jaeger to help administrate the cluster.
Applications have become more and more complicated over the years and often rely on external dependencies these days. These dependencies could be an Azure Service Bus Queue or a database. KEDA allows applications to scale according to these dependencies.
Using Azure Active Directory authentication allows users to authenticate their applications using Azure identities. The advantage of this approach is that no passwords need to be stored and managed for the connection.
The following list consists of all blog posts in chronological order:
-
Run xUnit Tests inside Docker during an Azure DevOps CI Build
-
Restore NuGet Packages from a Private Feed when building Docker Containers
-
Publish NuGet Packages to Nuget.org using Azure DevOps Pipelines
-
Deploy to Azure Kubernetes Service using Azure DevOps YAML Pipelines
-
Auto-scale in Kubernetes using the Horizontal Pod Autoscaler
-
Replace Helm Chart Variables in your CI/CD Pipeline with Tokenizer
-
Automatically Deploy your Database with Dacpac Packages using Linux and Azure DevOps
-
Deploy a Docker Container to Azure Functions using an Azure DevOps YAML Pipeline
-
Configure custom URLs to access Microservices running in Kubernetes
-
Automatically issue SSL Certificates and use SSL Termination in Kubernetes
-
Deploy Microservices to multiple Environments using Azure DevOps
-
Deploy every Pull Request into a dedicated Namespace in Kubernetes
-
Use Infrastructure as Code to deploy your Infrastructure with Azure DevOps
-
Debug Microservices running inside a Kubernetes Cluster with Bridge to Kubernetes
-
Collect and Query your Kubernetes Cluster Logs with Grafana Loki
-
Automatically set Azure Service Bus Queue Connection Strings during the Deployment
-
Use AAD Authentication for Applications running in AKS to access Azure SQL Databases