BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeMicrosoft Azure Administrator (AZ-104)Cram sheet — Provision and manage containers in the Azure portal
Topic Cram Sheet429 words

Cram sheet — Provision and manage containers in the Azure portal

AZ-104 › Unit 3 › Provision and manage containers in the Azure portal

Cram sheet — Provision and manage containers in the Azure portal

Provision and manage containers in the Azure portal

Node
AZ104-U3.T3
Objectives
4
Bank questions
19
Grounded documents
4

Three container services with three different jobs: a registry that stores images, an instance service that runs one task, and a platform that runs an application. Most questions here are asking which of the three the requirement describes.

Container Registry: the tiers differ by capacity, then by feature

  • Three plans: Basic, Standard, Premium.
  • All three provide the same programmatic capabilities and data plane APIs, and all have zone redundancy enabled by default in supported regions. Basic is not a cut-down API.
  • What separates them first is included storage and image throughput. What separates Premium specifically is the feature set: geo-replication — one registry managed across multiple regions — plus private link with private endpoints, and higher concurrency.
  • So a stem asking for a registry in several regions under one name, or a registry reachable only privately, is asking for Premium and nothing else will do.

Container Instances: groups and restart policy

  • A container group is containers scheduled on the same host machine, sharing a lifecycle, resources, local network, and storage volumes. The documentation's own analogy is a Kubernetes pod.
  • ⚠ Multi-container groups support only Linux containers. For Windows, Azure Container Instances supports deployment of a single container instance only. This is the single most reliable elimination in the topic.
  • A group's resources are the sum of its instances' requests: two containers asking for one CPU each means the group is allocated two.
  • Restart policy has three values, and Always is the default applied when none is specified:
PolicyBehaviour
Always (default)Containers are always restarted
OnFailureRestarted only on a nonzero exit; containers run at least once
NeverNot restarted after a successful (exit code 0) finish

Container Apps: the environment is the boundary

  • A Container Apps environment is a secure boundary around one or more container apps and jobs, and the runtime handles OS upgrades, scaling, failover and resource balancing.
  • ⚠ Apps in the same environment share the same virtual network and write logs to the same logging destination. That is the reason to put apps together — and the reason to keep them apart when they must be isolated.

Match the service to the noun in the requirement

An image to store, versioned and pulled: registry. A task that runs and exits, or a single container with no orchestration: instances. An application with revisions, scaling and ingress: Container Apps. The stem almost always names the noun, and the service follows from it.

Traps

Where Unit 3 Topic 3 catches people

Proposing a multi-container group for Windows containers. Assuming Basic registries have a reduced API rather than reduced capacity. Reaching for Standard when geo-replication or private endpoints are required. Forgetting that Always is the default restart policy, so a run-once task left at the default restarts forever. Putting apps that must be isolated in one Container Apps environment, where they share a network and a log destination.

Check yourself

Loading flashcards…

Where these figures come from

Every figure above was read from the raw documentation below on the day this sheet was written. The sha1 is git hash-object over the bytes as fetched, so a doc that changes underneath this sheet can be detected rather than assumed.

Documentsha1
Azure Container Registry service tiers7541b839696f
Introduction to container groups706cf3b4c541
Restart policy for run-once tasks7a520bfd1207
Azure Container Apps environmentsa2e3bdd87bd5
All Microsoft Azure Administrator (AZ-104) Study Resources

Related Notes

  • AZ-104 exam map391 words
  • Unit 1 roadmap — Manage Azure identities and governance358 words
  • Unit 1 capstone — Onboarding an acquired subsidiary810 words
  • Lab — A budget notifies and stops nothing166 words
  • Lab — Prove that inheritance only flows one way212 words
  • Lab — Tags do not inherit, and a lock is not a permission204 words
  • Lab — Watch a dynamic group fill itself in183 words
  • Cram sheet — Manage access to Azure resources447 words
  • Cram sheet — Manage Azure subscriptions and governance841 words
  • Cram sheet — Manage Microsoft Entra users and groups580 words
  • Unit 2 roadmap — Implement and manage storage375 words
  • Unit 2 capstone — A media archive on a budget808 words

Ready to study Microsoft Azure Administrator (AZ-104)?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Microsoft Azure Administrator (AZ-104)?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Microsoft Azure Administrator (AZ-104) ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Cram check — Provision and manage containers in the Azure portal

Card 1 of 5

Front of flashcard 1 of 5

Which ACR tier is required for geo-replication and private endpoints?

medium

Premium. All three tiers share the same data-plane APIs; Basic and Standard differ by capacity, Premium by features.

az-104az104:unit:3cram

Cram check — Provision and manage containers in the Azure portal

Card 1

Front

Which ACR tier is required for geo-replication and private endpoints?

Back

Premium. All three tiers share the same data-plane APIs; Basic and Standard differ by capacity, Premium by features.

Card 2

Front

Can a container group run Windows containers?

Back

Multi-container groups are Linux only. For Windows, ACI supports a single container instance.

Card 3

Front

What is the default ACI restart policy, and why does it matter for a run-once task?

Back

Always. A task left at the default restarts forever — use OnFailure or Never.

Card 4

Front

What do two container apps in the same environment share?

Back

The same virtual network and the same logging destination. The environment is the security boundary.

Card 5

Front

How are a container group's resources calculated?

Back

By summing the resource requests of its instances — two containers at one CPU each means a two-CPU group.

Cram check — Provision and manage containers in the Azure portal

Card 1

Front

Which ACR tier is required for geo-replication and private endpoints?

Back

Premium. All three tiers share the same data-plane APIs; Basic and Standard differ by capacity, Premium by features.

Card 2

Front

Can a container group run Windows containers?

Back

Multi-container groups are Linux only. For Windows, ACI supports a single container instance.

Card 3

Front

What is the default ACI restart policy, and why does it matter for a run-once task?

Back

Always. A task left at the default restarts forever — use OnFailure or Never.

Card 4

Front

What do two container apps in the same environment share?

Back

The same virtual network and the same logging destination. The environment is the security boundary.

Card 5

Front

How are a container group's resources calculated?

Back

By summing the resource requests of its instances — two containers at one CPU each means a two-CPU group.