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.
The GitHub Actions will deploy an environment that includes both the with-fqdn and with-dapr versions of the solution.
- Fork the sample repo
- 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 |
See the README.md files within each folder for scripts to deploy the sample using the Azure CLI.