Containers
Unlock the complete study guide + 1,040 practice questions across 16 full exams.
Bundled into the existing Microsoft Azure Administrator premium course — no separate purchase.
Included in this chapter:
- Three container services and how they fit together
- Azure Container Registry: SKUs and authentication
- Azure Container Instances: container groups, sizing, restart policy
- Container Apps: revisions, ingress, KEDA scaling
Choosing among ACI, Container Apps, and AKS
| Dimension | Azure Container Instances | Azure Container Apps | Azure Kubernetes Service |
|---|---|---|---|
| Best for | One-off / batch tasks, sidecar groups | Autoscaling HTTP & event-driven microservices | Full Kubernetes control & ecosystem |
| Autoscaling | None. Fixed group size | KEDA: HTTP, TCP, event, CPU/memory | Cluster + pod autoscalers (you manage) |
| Scale to zero | No (start/stop the group) | Yes, except CPU/memory rules | No (nodes always running) |
| Ingress / revisions | Public IP + FQDN per group, no revisions | Built-in external/internal ingress, revisions, traffic split | You configure (Ingress controller, etc.) |
| Management altitude | Serverless, per-second billing | Managed serverless (Kubernetes hidden) | You operate the cluster |
Decision tree
Cheat sheet
Unlock with Premium — includes all practice exams and the complete study guide.
Also tested in
References
- Introduction to private Docker container registries in Azure
- Serverless containers in Azure - Azure Container Instances overview
- Azure Container Apps overview
- Azure Container Registry SKU features and limits
- Azure Container Registry authentication options
- Using Azure Container Registry webhooks
- Introduction to container groups in Azure Container Instances
- Resource and quota limits for Azure Container Instances
- Restart policy for run-once tasks in Azure Container Instances
- Revisions in Azure Container Apps
- Ingress in Azure Container Apps
- Scaling in Azure Container Apps