GithubHelp home page GithubHelp logo

isabella232 / reddog-containerapps Goto Github PK

View Code? Open in Web Editor NEW

This project forked from azure/reddog-containerapps

0.0 0.0 0.0 563 KB

Azure Container App implementation of the reddog demo, brought to you by the Cloud Native Global Black Belt Team.

License: MIT License

Bicep 98.05% Shell 1.63% Dockerfile 0.32%

reddog-containerapps's Introduction

Red Dog Demo: Azure Container Apps Deployment

Background

This repository leverages the Reddog codebase and was created to help users deploy a comprehensive, microservice-based sample application to Azure Container Apps.

Azure Container Apps (Preview) is a fully managed serverless container offering for building and deploying modern apps at scale. It enables developers to deploy containerized apps without managing complex infrastructure like kubernetes clusters. It leverages 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 presented by distributed applications, such as state management and service invocation. Container Apps also provides a managed version of Kubernetes Event Driven Autoscaling (KEDA). KEDA allows your containers to autoscale based on incoming events from external services such Azure Service Bus and Redis.

To explore how Azure Container Apps compares to other container hosting options in Azure, see Comparing Container Apps with other Azure container options. Note that Azure Container Apps is currently in Public Preview and so not recommended for production workloads.

Architecture

The architecture is comprised of a single Container Apps Environment that hosts ten .NET Core microservice applications. The .NET Core Dapr SDK is used to integrate with Azure resources through PubSub, State and Binding building blocks and while Dapr typically provides flexibility around the component implementations, this solution is opinionated. The services also make use of KEDA scale rules to allow for scaling based on event triggers as well as scale to zero scenarios.

Architecture diagram

This repository leverages bicep templates in order to execute the deployment of the application and the supporting Azure Infrastructure. Bicep is a Domain Specific Language (DSL) for deploying Azure resources declaratively and provides a transparent abstraction over Azure Resource Manager (ARM) and ARM templates.

Container Apps

For details on the microservices and their functionality, visit the Reddog codebase repo. Each Container Apps deployment configuration is described below including its associated Dapr components and KEDA scale rules. Please note this repository contains an additional component that is needed to get the solution up and running on Container Apps.

Traefik

Traefik is a leading reverse proxy and load balancer that integrates with your existing infrastructure components and configures itself automatically. The UI container app has the ability to route to backend container apps through the managed ingress capabilities (Envoy) built into the platform. For this solution, we chose to leverage Traefik's dynamic configuration feature to provide a single point of ingress and a way to invoke internal, back-end apis using the rest-samples. The alternative approach would be to enable external ingress on multiple container apps in the environment. Traefik is not necessary for all Container Apps ingress configurations but enables sub-domain routing capabilities which are not supported in the service today, as all container apps in the environment are deployed to a single domain.

Service Ingress Dapr Component(s) KEDA Scale Rule(s)
Traefik External Dapr not enabled HTTP
UI Internal Dapr not enabled HTTP
Virtual Customer None Service to Service Invocation N/A
Order Service Internal PubSub: Azure Service Bus HTTP
Accounting Service Internal PubSub: Azure Service Bus Azure Service Bus Subscription Length, HTTP
Receipt Service Internal PubSub: Azure Service Bus, Binding: Azure Blob Azure Service Bus Subscription Length
Loyalty Service Internal PubSub: Azure Service Bus, State: Azure Cosmos DB Azure Service Bus Subscription Length
Makeline Service Internal PubSub: Azure Service Bus, State: Azure Redis Azure Service Bus Subscription Length, HTTP
Virtual Worker None Service to Service Invocation, Binding: Cron N/A

A tenth service, Bootstrapper is also executed in a Container App. This service is run once to perform the database creation and is subsequently scaled to 0 after creating the necessary objects in Azure SQL Database.

Deployment

To deploy the Reddog services along with the necessary Azure Resources, clone this repo and run the following Azure CLI commands. You will need an Azure subscription where you have permission to create a Resource Group (eg. Contributor). Alternatively you may execute the deploy.sh script.

Please note that Container Apps is only available in a subset of Azure regions during Public Preview.

# *nix only
export RG="reddog"
export LOCATION="eastus2"
export SUB_ID="<YourSubscriptionID>"

# Follow Azure CLI prompts to authenticate to the subscription of your choice
az login
az account set --subscription $SUB_ID

# Create resource group
az group create -n $RG -l $LOCATION

# Deploy infrastructure and reddog apps
az deployment group create -n reddog -g $RG -f ./deploy/bicep/main.bicep

# Display outputs from bicep deployment
az deployment group show -n reddog -g $RG -o json --query properties.outputs.urls.value

To check the status of the deployment while it is running navigate to the Deployments blade on the Resource Group in the Azure Portal. Deployment should take ~25 minutes and once completed, you should receive an output similar to the following.

[
  "UI: https://reddog.whitebush-a2e52ffc.eastus2.azurecontainerapps.io",
  "Product: https://reddog.whitebush-a2e52ffc.eastus2.azurecontainerapps.io/product",
  "Makeline Orders (Redmond): https://reddog.whitebush-a2e52ffc.eastus2.azurecontainerapps.io/makeline/orders/Redmond",
  "Accounting Order Metrics (Redmond): https://reddog.whitebush-a2e52ffc.eastus2.azurecontainerapps.io/accounting/OrderMetrics?StoreId=Redmond"
]

Navigate to the fqdn of the UI to see the Reddog solution up and running on Container Apps!

Delete the Deployment

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

Warning: If you deployed additional resources inside the reddog Resource Group, the following command will delete all of them.

# *nix only
export RG="reddog"

az group delete --name $RG --yes --no-wait

Infrastructure Components

This solution uses the following components:

  • Resource Groups are logical containers for Azure resources. We use a single resource group to structure everything related to this solution in the Azure portal.
  • Azure Container Apps is a fully managed serverless container service for building and deploying modern apps at scale. In this solution we hosting all of the 10 microservices on Container Apps and deploying them into a single Container App Environment, which acts as a secure boundary around the system.
  • Azure Service Bus is a fully managed enterprise message broker complete with queues and publish-subscribe topics used in this case for the Dapr PubSub component implementation. This component is leveraged by multiple services, with the Order Service publishing messages on the bus and the Makeline, Accounting, Loyalty and Receipt services subscribing to these messages.
  • Azure CosmosDB is a NoSQL multi-model managed database service that is used 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 is 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. It is created for the Accounting Service, which makes use of Entity Framework Core for interfacing with the database. The Bootstrapper Service is responsible for setting up the SQL Tables in the database and runs once before connection to the Accounting Service is established.
  • Azure Blob Storage is optimized for storing massive amounts of unstructured data such as text or binary files. Blob storage is used by the Receipt Service via a Dapr Output Bindings to store the order receipts.
  • Traefik is a leading modern reverse proxy and load balancer that makes deploying microservices easy. In this solution we are making use of Traefik's dynamic configuration feature to do path-based routing from the UI (a Vue.js SPA) and to enable direct API calls to the backend services for testing.
  • Azure Monitor enables you to collect, analyze, and act on telemetry data from your Azure infrastructure environments. It is used along with Application Insights to view the container logs and collect metrics from the microservices.

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.

reddog-containerapps's People

Contributors

alicejgibbons avatar chzbrgr71 avatar lynn-orrell avatar microsoftopensource avatar scottholden avatar yokimjd 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.