Which Azure service is used to run containerized applications without managing infrastructure?
a) Azure Container Instances (ACI)
b) Azure Kubernetes Service (AKS)
c) Azure Functions
d) Azure App Service
Answer:
a) Azure Container Instances (ACI)
Explanation:
Azure Container Instances (ACI) is a service that allows users to run containerized applications in the cloud without the need to provision or manage underlying infrastructure. ACI provides a fast and simple way to deploy containers, handling the scaling and management of the container environment automatically.
ACI supports Linux and Windows containers, making it easy to build and run microservices, batch jobs, and other containerized workloads in a serverless environment. Users only pay for the resources consumed by the containers during execution.
This service is ideal for developers who want to focus on building containerized applications without worrying about managing Kubernetes clusters or other infrastructure.