├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature_request.md │ └── issue-report.md └── policies │ └── resourceManagement.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs └── images │ └── Secrets-change-steps-portal.png ├── preview └── ai-compose │ ├── az-extension │ └── containerapp-1.2.0b5-latest │ │ ├── INSTALL.md │ │ ├── MD5SUMS │ │ ├── RELEASE_NOTES.md │ │ ├── containerapp-1.2.0b5+ai.compose-py2.py3-none-any.whl │ │ └── pycomposefile-0.0.32-py3-none-any.whl │ └── mcp-gateway-map.yml └── templates ├── README.md ├── arm └── main.json ├── azml-app ├── Dockerfile ├── README.md ├── app │ ├── README.md │ ├── generateScore.py │ ├── inferenceClasses.py │ ├── main.py │ └── startupHelpers.py ├── azcopy-installer.sh ├── entrypoint.sh └── requirements.txt └── bicep ├── main.bicep ├── managedCertificates ├── 1managedCertificateAndAppDisabled.bicep ├── 2appEnabled.bicep ├── managedCertificateAndApp.parameters.json └── readme.md ├── premiumIngress ├── README.md └── main.bicep ├── privateEndpointFrontDoor ├── README.md ├── containerappenv-pe-approve.bicep ├── containerappenv-pe.bicep ├── dns-a-record.bicep └── main-mgd-net.bicep ├── ruleBasedRouting ├── LICENSE ├── ReadMe.md ├── allapp │ ├── Dockerfile │ ├── README.md │ ├── app.py │ └── screenshot.png ├── azure.yaml ├── infra │ ├── abbreviations.json │ ├── app │ │ └── app1.bicep │ ├── main.bicep │ ├── main.parameters.json │ ├── modules │ │ └── fetch-container-image.bicep │ └── shared │ │ ├── apps-env.bicep │ │ ├── dashboard-web.bicep │ │ ├── http-routes.bicep │ │ ├── keyvault.bicep │ │ ├── monitoring.bicep │ │ └── registry.bicep └── next-steps.md └── workloadProfiles ├── managed-env-workload-profiles.bicep ├── managed-env-workload-profiles.parameters.json └── readme.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/.github/ISSUE_TEMPLATE/issue-report.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/images/Secrets-change-steps-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/docs/images/Secrets-change-steps-portal.png -------------------------------------------------------------------------------- /preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/INSTALL.md -------------------------------------------------------------------------------- /preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/MD5SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/MD5SUMS -------------------------------------------------------------------------------- /preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/RELEASE_NOTES.md -------------------------------------------------------------------------------- /preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/containerapp-1.2.0b5+ai.compose-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/containerapp-1.2.0b5+ai.compose-py2.py3-none-any.whl -------------------------------------------------------------------------------- /preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/pycomposefile-0.0.32-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/preview/ai-compose/az-extension/containerapp-1.2.0b5-latest/pycomposefile-0.0.32-py3-none-any.whl -------------------------------------------------------------------------------- /preview/ai-compose/mcp-gateway-map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/preview/ai-compose/mcp-gateway-map.yml -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/arm/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/arm/main.json -------------------------------------------------------------------------------- /templates/azml-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/Dockerfile -------------------------------------------------------------------------------- /templates/azml-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/README.md -------------------------------------------------------------------------------- /templates/azml-app/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/app/README.md -------------------------------------------------------------------------------- /templates/azml-app/app/generateScore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/app/generateScore.py -------------------------------------------------------------------------------- /templates/azml-app/app/inferenceClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/app/inferenceClasses.py -------------------------------------------------------------------------------- /templates/azml-app/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/app/main.py -------------------------------------------------------------------------------- /templates/azml-app/app/startupHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/app/startupHelpers.py -------------------------------------------------------------------------------- /templates/azml-app/azcopy-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/azcopy-installer.sh -------------------------------------------------------------------------------- /templates/azml-app/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/azml-app/entrypoint.sh -------------------------------------------------------------------------------- /templates/azml-app/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn 3 | transformers 4 | torch -------------------------------------------------------------------------------- /templates/bicep/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/main.bicep -------------------------------------------------------------------------------- /templates/bicep/managedCertificates/1managedCertificateAndAppDisabled.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/managedCertificates/1managedCertificateAndAppDisabled.bicep -------------------------------------------------------------------------------- /templates/bicep/managedCertificates/2appEnabled.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/managedCertificates/2appEnabled.bicep -------------------------------------------------------------------------------- /templates/bicep/managedCertificates/managedCertificateAndApp.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/managedCertificates/managedCertificateAndApp.parameters.json -------------------------------------------------------------------------------- /templates/bicep/managedCertificates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/managedCertificates/readme.md -------------------------------------------------------------------------------- /templates/bicep/premiumIngress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/premiumIngress/README.md -------------------------------------------------------------------------------- /templates/bicep/premiumIngress/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/premiumIngress/main.bicep -------------------------------------------------------------------------------- /templates/bicep/privateEndpointFrontDoor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/privateEndpointFrontDoor/README.md -------------------------------------------------------------------------------- /templates/bicep/privateEndpointFrontDoor/containerappenv-pe-approve.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/privateEndpointFrontDoor/containerappenv-pe-approve.bicep -------------------------------------------------------------------------------- /templates/bicep/privateEndpointFrontDoor/containerappenv-pe.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/privateEndpointFrontDoor/containerappenv-pe.bicep -------------------------------------------------------------------------------- /templates/bicep/privateEndpointFrontDoor/dns-a-record.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/privateEndpointFrontDoor/dns-a-record.bicep -------------------------------------------------------------------------------- /templates/bicep/privateEndpointFrontDoor/main-mgd-net.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/privateEndpointFrontDoor/main-mgd-net.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/LICENSE -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/ReadMe.md -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/allapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/allapp/Dockerfile -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/allapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/allapp/README.md -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/allapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/allapp/app.py -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/allapp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/allapp/screenshot.png -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/azure.yaml -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/abbreviations.json -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/app/app1.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/app/app1.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/main.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/main.parameters.json -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/modules/fetch-container-image.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/modules/fetch-container-image.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/shared/apps-env.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/shared/apps-env.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/shared/dashboard-web.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/shared/dashboard-web.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/shared/http-routes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/shared/http-routes.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/shared/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/shared/keyvault.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/shared/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/shared/monitoring.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/infra/shared/registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/infra/shared/registry.bicep -------------------------------------------------------------------------------- /templates/bicep/ruleBasedRouting/next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/ruleBasedRouting/next-steps.md -------------------------------------------------------------------------------- /templates/bicep/workloadProfiles/managed-env-workload-profiles.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/workloadProfiles/managed-env-workload-profiles.bicep -------------------------------------------------------------------------------- /templates/bicep/workloadProfiles/managed-env-workload-profiles.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/workloadProfiles/managed-env-workload-profiles.parameters.json -------------------------------------------------------------------------------- /templates/bicep/workloadProfiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-container-apps/HEAD/templates/bicep/workloadProfiles/readme.md --------------------------------------------------------------------------------