Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.74 KB

File metadata and controls

23 lines (16 loc) · 1.74 KB

Azure Container Apps Sample - multi-container communication

The following sample shows how to use Azure Container Apps to have one container call another within the environment. This is possible both with or without Dapr. Dapr will provide mTLS, auto-retries, and additional telemetry if enabled.

The nodeApp (container-1-node) is an express.js API that will call a /hello endpoint. This route will call the dotnetApp (container-2-dotnet) to return a message.

To view the version of this solution that does not utilize Dapr, see the with-fqdn folder. To view the version of this solution that does utilize Dapr, see the with-dapr folder.

Deploy and Run

Deploy via GitHub Actions (recommended)

The GitHub Actions will deploy an environment that includes both the with-fqdn and with-dapr versions of the solution.

  1. Fork the sample repo
  2. Create the following required encrypted secrets for the sample
Name Value
AZURE_CREDENTIALS The JSON credentials for an Azure subscription. Learn more
RESOURCE_GROUP The name of the resource group to create
PACKAGES_TOKEN A GitHub personal access token with the packages:read scope. Learn more

Deploy via Azure CLI

See the README.md files within each folder for scripts to deploy the sample using the Azure CLI.