Code Monkey home page Code Monkey logo

robertoborges / app-templates-microservices-integration Goto Github PK

View Code? Open in Web Editor NEW

This project forked from azure-samples/app-templates-microservices-integration

0.0 1.0 0.0 10.54 MB

Cross-platform .NET sample microservices and container based app template that showcases deployment on Azure PAAS services.

License: MIT License

Shell 2.16% JavaScript 3.33% C# 23.21% CSS 1.05% HTML 0.32% Vue 10.58% Dockerfile 1.35% SCSS 49.56% Bicep 8.43%

app-templates-microservices-integration's Introduction

Red Dog Demo: Azure Container Apps, Azure App Service, Azure Functions, and Azure API Management

This repository leverages the Reddog codebase and the Reddog Container Apps bicep modules. It was created to help users deploy a comprehensive, microservice-based sample application to Azure Container Apps, Azure App Service, Azure Functions, and Azure API Management.

Refer to the App Templates repo Readme for more samples that are compatible with Azure Developer CLI (azd)

Features

This project framework provides the following features:

  • The User Interface (UI) is hosted in Azure App Service, a fully managed service for creating enterprise-ready web and mobile apps for any platform or device quickly and easily with built-in infrastructure maintenance, security patching, and scaling.
  • Virtual Customers are hosted in Azure Functions, a serverless computing service for creating event-driven, scalable serverless applications in .NET, Node.js, Python, Java, or PowerShell.
  • The rest of the micro services are hosted in Azure Container Apps, a fully managed, serverless container service used to build and deploy modern apps at scale.
  • Integration between the UI, Virtual Customers, and Container Apps is handled by API Management, a hybrid, multicloud management platform for APIs across all environments.

Architecture

Below is the architecture deployed in this demonstration.

Integration Architecture

  • Azure App Service is a fully managed HTTP-based service that builds, deploys, and scales web apps. .NET, .NET Core, Java, Ruby, Node.js, PHP, and Python are all supported. Applications can run and scale in either Windows or Linux-based environments.

  • Azure Functions is a serverless solution that allows you to focus more on blocks of code that can be executed with minimal infrastructure management. Functions can be hosted in various hosting plans, whereas this reference architecture uses the premium plan, due to the use of private endpoints.

  • Azure API Management is a managed service that allows you to manage services across hybrid and multi-cloud environments. API management acts as a facade to abstract the backend architecture, and it provides control and security for API observability and consumption for both internal and external users.

  • Azure Container Apps is a fully managed, serverless container service used to build and deploy modern apps at scale. In this solution, you're hosting microservices on Azure Container Apps and deploying them into a single Container App environment. This environment acts as a secure boundary around the system.

Additional Azure Services

  • Azure resource groups are logical containers for Azure resources. You use a single resource group to structure everything related to this solution in the Azure portal.

  • Azure Container Registry, a registry of Docker and Open Container Initiative (OCI) images, with support for all OCI artifacts

  • Azure Service Bus is a fully managed enterprise message broker complete with queues and publish-subscribe topics. In this solution, use it for the Dapr pub/sub component implementation. Multiple services use this component. The order service publishes messages on the bus, and the Makeline, accounting, loyalty, and receipt services subscribe to these messages.

  • Azure Cosmos DB is a NoSQL, multi-model managed database service. Use it as a Dapr state store component for the loyalty service to store customer's loyalty data.

  • Azure Cache for Redis is a distributed, in-memory, scalable managed Redis cache. It's used as a Dapr state store component for the Makeline Service to store data on the orders that are being processed.

  • Azure SQL Database is an intelligent, scalable, relational database service built for the cloud. Create it for the accounting service, which uses Entity Framework Core to interface with the database. The Bootstrapper service is responsible for setting up the SQL tables in the database, and then runs once before establishing the connection to the accounting service.

  • Azure Blob Storage stores massive amounts of unstructured data like text or binary files. The receipt service uses Blob Storage via a Dapr output binding to store the order receipts.

  • Azure Monitor's Application Insights helps developers detect anomalies, diagnose issues, and understand usage patterns. Application Insights features extensible application performance management and monitoring for live web apps. Various platforms are supported, including .NET, Node.js, Java, and Python. It supports apps that are hosted in Azure, on-premises, in a hybrid environment, or in other public clouds. Application Insights is included as part of this reference architecture, to monitor the behaviors of the deployed application.

  • Azure Monitor's Log Analytics allows you to edit and run log queries with data in Azure Monitor Logs, optionally from within the Azure portal. Developers can run simple queries for a set of records or use Log Analytics to perform advanced analysis. They can then visualize the results. Log Analytics is configured as part of this reference architecture, to aggregate all the monitoring logs for more analysis and reporting.

This architecture uses Azure Container Apps integration with a managed version of the Distributed Application Runtime (Dapr). Dapr is an open source project that helps developers with the inherent challenges in distributed applications, like state management and service invocation.

Azure Container Apps also provides a managed version of Kubernetes Event-driven Autoscaling (KEDA). KEDA lets your containers autoscale based on incoming events from external services like Azure Service Bus and Azure Cache for Redis.

Additional Technologies

  • GitHub Actions helps you automate your software development workflows from within GitHub. In GitHub Actions, a workflow is an automated process that you set up in your GitHub repository. Each workflow is made up of individual actions that run after a specific event (like a pull request) occur.

  • GitHub Actions for Azure are developed by Microsoft and designed to be used with Azure. You can see all of the GitHub Actions for Azure in the GitHub Marketplace. With GitHub Actions for Azure, you can create workflows that you can set up in your repository to build, test, package, release, and deploy to Azure. GitHub Actions for Azure supports Azure services, including Azure App Service, Azure Functions, and Azure Key Vault. See Finding and customizing actions to learn more about incorporating actions into your workflows.

  • GitHub Reusable Workflows make workflows easier to maintain and allows you to create new workflows more quickly by building on the work of others, rather than copying and pasting from one workflow to another. Workflow reuse also promotes best practice by helping you to use workflows that are well designed, have already been tested, and have been proven to be effective. Your organization can build up a library of reusable workflows that can be centrally maintained.

  • Bicep is a domain-specific language (DSL) that uses declarative syntax to deploy Azure resources. In a Bicep file, you define the infrastructure you want to deploy to Azure, and then use that file throughout the development lifecycle to repeatedly deploy your infrastructure. Your resources are deployed in a consistent manner. Bicep provides concise syntax, reliable type safety, and support for code reuse. Bicep offers a first-class authoring experience for your infrastructure-as-code solutions in Azure.

Benefits of this Architecture Sample

  1. Deploy microservices containers without needing to manage complex container orchestration infrastructure.
  2. Running containerized workloads on a serverless and consumption based platform that supports scale to zero.
  3. Autoscaling applications based on HTTP traffic or events supported by KEDA.
  4. Deploying APIs and exposing APIs to internal and external clients.
  5. API Management provides the publishing capability for HTTP APIs, to promote reuse and discoverability. It can manage other cross-cutting concerns such as authentication, throughput limits, and response caching.
  6. Continuous Integration (CI) to produce container images and Continuous Deployment (CD) to increase speed and reliability of deployments.
  7. Infrastructure as Code (IaC) avoids manual configuration and enforces consistency by representing desired environment states via well-documented code in formats such as JSON. Infrastructure deployments with IaC are repeatable and prevent runtime issues caused by configuration drift or missing dependencies.

Getting Started

The deployment involves the following:

  1. Create the resource group and Azure Container Registry.
  2. Build the microservices and create the corresponding container images.
  3. Push the container images to the Azure Container Registry.
  4. Provision the infrastructure and deploy the microservices and configurations.

There are two deployment options:

  1. Deployment script method is to provide a quick start to facilitate developer scenarios. It is the quickest way to get the solution provisioned and functioning in Azure for exploration.
  2. The DevOps method is to provide GitHub actions pipelines to support continuous deployment scenarios.

NOTE: The APIM deployment can take over an hour to complete.

Prerequisites

  1. Local bash shell with Azure CLI or Azure Cloud Shell
  2. Azure Subscription. Create one for free.
  3. Clone or fork of this repository.

QuickStart Option

A bash script is included for quickly provisioning a fully functional environment in Azure. The script requires the following parameters:

-n: The deployment name.
-l: The region where resources will be deployed.
-c: A unique string that will ensure all resources provisioned are globally unique.

NOTE: Please refer to the Resource Name Rules to learn more about globally unique resources.

Follow the steps below to quickly deploy using the bash script:

  1. Clone the repository to local machine.

    git clone https://github.com/Azure-Samples/app-templates-microservices-integration.git
    
  2. Switch to the cloned folder

    cd app-templates-microservices-integration
    
  3. Make the bash script executable

    chmod +x ./deploy.sh
    
  4. Login to Azure and ensure the correct subscription is selected

    az login
    az account set --subscription <subscription id>
    az account show
    
  5. Run the script and provide required parameters

    ./deploy.sh -n demo -l eastus2 -c <unique code>
    

GitHub Actions Option

GitHub workflows are included for deploying the solution to Azure.

To run the workflows, follow these steps:

  1. Fork the repo
  2. Create three environments
    • Production: Commits to the master or main branch will trigger deployments to this environment.
    • Test: Commits to the dev or develop branch will trigger deployments to this environment.
    • Features: Commits to any branch under features/ will trigger deployments to this environment.
  3. Create the following secrets
    • AZURE_CREDENTIALS: This secret will be used by GitHub actions to authenticate with Azure. Follow the instructions here to login using Azure Service Principal with a secret.
    • AZURE_LOCATION: This is the Azure region where resources will be deployed
    • AZURE_SUFFIX: This is the name that will be appended to Azure resources
    • AZURE_UNIQUE_CODE: This is a unique code that will be appended to Azure resources
  4. Go to Actions
  5. Click on the Deploy Solution action
  6. Click on Run workflow and select a branch

Verifying Deployment

When the deployment completes.

  1. Navigate to the resource group in the Azure Portal. You should see a list of resources that looks something like this:

    Deployed Resources

    NOTE: In the image above 0ef88b is the unique code supplied to deploy.sh or stored in the AZURE_UNIQUE_CODE secret.

  2. Click on the UI App Service resource named ui-reddog-<unique code>. In the Overview tab, the URL of the User Interface is displayed as follows:

    https://ui-reddog-<unique code>.azurewebsites.net
    
  3. Click on the URL to open up a dashboard UI. After a few minutes, the screen should look something like the screen below:

    RedDog Dashboard

    NOTE: The first time you load the dashboard, you may get a 504 - Gateway Timeout error. Try again after a few minutes.

  4. The Virtual Customer is simulating customer orders periodically. To submit an order you can use the following curl command in a bash shell to send a request to API Management.

    curl -X POST https://<Your APIM Gateway URL>/order/order -H 'Content-Type: application/json' -d '{"storeId": "Redmond", "firstName": "John Hannibal", "lastName": "Smith", "loyaltyId": "42", "orderItems": [{"productId": 1, "quantity": 1}, { "productId": 2, "quantity": 1}, {"productId": 3, "quantity": 3}]}'
    

Delete the Deployment

Clean up the deployment by deleting the single resource group that contains the Reddog infrastructure.

WARNING: This will delete ALL the resources inside the resource group.

  1. Make the bash script executable
chmod +x ./destroy.sh
  1. Login to Azure and ensure the correct subscription is selected
az login
az account set --subscription <subscription id>
az account show
  1. Run the script and provide required parameters
./destroy.sh -n demo -c <unique code>

NOTE: The unique code provided to destroy.sh has to match the one provided during deployment.

Enhancements Opportunities

Below are opportunities for enhancements. Pull requests are welcome:

  1. Restrict direct traffic to Container Apps, Azure Function, and APIM (e.g. using a VNet)
  2. Use Azure Application Gateway to manage traffic to the Web Application. Application Gateway can be integrated with Microsoft Defender for Cloud to prevent, detect, and respond to threats.
  3. Add throttling, caching policies to APIM APIs
  4. Add subscriptions, products, authentication, and authorization for API Management.
  5. Use Azure App Configuration and Azure Key Vault for configuration and secret management

Next steps

Related resources

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

app-templates-microservices-integration's People

Contributors

aarthiem avatar achingono avatar alicejgibbons avatar asofio avatar chzbrgr71 avatar fsaleemm avatar github-actions[bot] avatar jschluchter avatar lynn-orrell avatar lynnaloo avatar microsoft-github-policy-service[bot] avatar microsoftopensource avatar mikelapierre avatar msftjim avatar prakashmsft avatar raykao avatar rlibbert avatar rob-mckenna avatar robertoborges avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.