This example assumes you have previously completed the following examples:
Ensure you are running the latest Azure CLI and install the Azure Container Apps extensions for the CLI using the command lines below:
az extension add --name containerapp --upgrade
az provider register --namespace Microsoft.App
az provider register --namespace Microsoft.OperationalInsights
Setup the environment variables for the Azure Container Apps environment and its region using the command lines below:
export ACA_ENVIRONMENT_NAME=joazacae$RANDOM
export ACA_REGION=$REGION
To create the Azure Container Apps environment use the following command line:
az containerapp env create \
--name $ACA_ENVIRONMENT_NAME \
--resource-group $RESOURCE_GROUP \
--location "$ACA_REGION"
Do NOT forget to remove the resources once you are done running the example.
- Create a manual job
- Deploy a Dropwizard application
- Deploy a Helidon application
- Deploy a Micronaut application
- Deploy a Piranha Micro application
- Deploy a Quarkus application
- Deploy a Spring Boot application
- Deploy Glassfish
- Deploy Tomcat
- Deploy WildFly
1m