Подія
17 бер., 21 - 21 бер., 10
Приєднайтеся до серії нарад, щоб створити масштабовані рішення зі ШІ на основі реальних випадків використання з колегами-розробниками та експертами.
Зареєструватися заразЦей браузер більше не підтримується.
Замініть його на Microsoft Edge, щоб користуватися перевагами найновіших функцій, оновлень безпеки та технічної підтримки.
Azure Container Apps exposes each container app through a domain name if ingress is enabled. You can expose ingress endpoints either publicly to the world or to the other container apps in the same environment. Alternatively, you can limit ingress to only other container apps in the same environment.
Application code can call other container apps in the same environment using one of the following methods:
http://<APP_NAME>
for internal requestsПримітка
When you call another container in the same environment using the FQDN or app name, the network traffic never leaves the environment.
A sample solution showing how you can call between containers using both the FQDN Location or Dapr can be found on Azure Samples
A container app's location is composed of values associated with its environment, name, and region. Available through the azurecontainerapps.io
top-level domain, the fully qualified domain name (FQDN) uses:
The following diagram shows how these values are used to compose a container app's fully qualified domain name.
The az containerapp show
command returns the fully qualified domain name of a container app.
az containerapp show \
--resource-group <RESOURCE_GROUP_NAME> \
--name <CONTAINER_APP_NAME> \
--query properties.configuration.ingress.fqdn
In this example, replace the placeholders surrounded by <>
with your values.
The value returned from this command resembles a domain name like the following example:
myapp.happyhill-70162bb9.canadacentral.azurecontainerapps.io
Developing microservices often requires you to implement patterns common to distributed architecture. Dapr allows you to secure microservices with mutual Transport Layer Security (TLS) (client certificates), trigger retries when errors occur, and take advantage of distributed tracing when Azure Application Insights is enabled.
A microservice that uses Dapr is available through the following URL pattern:
You can call a container app by doing by sending a request to http://<CONTAINER_APP_NAME>
from another app in the environment.
Подія
17 бер., 21 - 21 бер., 10
Приєднайтеся до серії нарад, щоб створити масштабовані рішення зі ШІ на основі реальних випадків використання з колегами-розробниками та експертами.
Зареєструватися заразНавчання
Модуль
Реалізація програм контейнерів Azure - Training
Запуск серверних контейнерованих програм у службі azure Container Apps.
Сертифікація
Microsoft Certified: Azure Developer Associate - Certifications
Створюйте насккладні рішення в Microsoft Azure, щоб створювати функції Azure, впроваджувати веб-програми та керувати ними, розробляти рішення, що використовують сховище Azure тощо.
Документація
Connect to services in Azure Container Apps (preview)
Learn how to use runtime services in Azure Container Apps.
Azure Container Apps environments
Learn how environments are managed in Azure Container Apps.
Tutorial: Build and deploy your app to Azure Container Apps
Build and deploy your app to Azure Container Apps with az containerapp create command.