Medium1 markMultiple Choice
AZ-305 · Question 41 · Domain 4.1: Compute Solutions
A development team wants to deploy a set of three microservices packaged as Docker containers.
Requirements:
- The services must be able to communicate with each other internally without exposing endpoints to the public internet.
- The architecture must automatically scale based on HTTP traffic, including scaling down to zero instances to save costs.
- The team does not want to manage Kubernetes infrastructure or node pools.
Which TWO Azure services could you recommend to meet these requirements? (Select TWO)
A development team wants to deploy a set of three microservices packaged as Docker containers.
Requirements:
- The services must be able to communicate with each other internally without exposing endpoints to the public internet.
- The architecture must automatically scale based on HTTP traffic, including scaling down to zero instances to save costs.
- The team does not want to manage Kubernetes infrastructure or node pools.
Which TWO Azure services could you recommend to meet these requirements? (Select TWO)
Answer options:
A.
Azure Kubernetes Service (AKS)
B.
Azure Container Apps
C.
Azure Container Instances (ACI)
D.
Azure Functions (Premium or Consumption with custom containers)
E.
Azure Service Fabric
How to approach this question
Look for serverless container options that abstract infrastructure and support scale-to-zero.
Full Answer
Azure Container Apps, Azure Functions (Premium or Consumption with custom containers)
Azure Container Apps is a serverless container service built for microservices. It abstracts away Kubernetes, supports scaling to zero via KEDA, and provides internal ingress for service-to-service communication. Azure Functions also supports deploying custom containers and can scale to zero. AKS and Service Fabric require infrastructure management. ACI is for simple, single-container tasks and lacks native HTTP auto-scaling.
Common mistakes
Selecting ACI. While ACI runs containers without managing VMs, it lacks the orchestration, service discovery, and HTTP-based auto-scaling required for microservices.
Practice the full Azure Solutions Architect Expert AZ-305 Practice Exam 3
55 questions · hints · full answers · grading
More questions from this exam
Q01Contoso Ltd is a global manufacturing company with 50,000 employees across 30 countries. They cur...MediumQ02Fabrikam Inc. is a Managed Service Provider (MSP) managing Azure environments for 50 different en...HardQ03A financial institution generates 5 TB of telemetry and audit logs daily across its Azure environ...MediumQ04A retail company has recently migrated several workloads to Azure. The IT Director wants a centra...EasyQ05A healthcare organization with 10,000 employees uses on-premises Active Directory. They are migra...Hard
Expert