mark
mark

Reputation: 2063

Azure Container Registry (ACR) SKUs

What is the difference between the Azure Container Registry (ACR) SKUs? The CLI lists these as options:

-sku {Basic,Managed_Basic,Managed_Standard,Managed_Premium}

The pricing page provides some help, but doesn't describe the difference between Basic and Managed_Basic. The docs are not helpful.

Upvotes: 2

Views: 3355

Answers (1)

Jason Ye
Jason Ye

Reputation: 13954

In Azure container registry, there are two different kinds of storage account, unmanaged disk and managed disk.

When we chose managed registry, we can chose SKUs, like Basic, Standard, Premium.

Enable this feature to have Azure automatically manage the registry without creating and managing storage accounts on your own. Managed registries have additional support for webhooks, AAD, and repository delete.
enter image description here

Pricing tiers for managed registries provide different levels of performance and capacity:

enter image description here

Managed Registry - A tier that offers additional capabilities for registries in three SKUs - Basic, Standard, and Premium. The images in these SKUs are stored in Storage Accounts managed by the Azure Container Registries service, which improves reliability and enables new features. New capabilities include webhook integration, repository authentication with Azure Active Directory, and support for delete functionality.

More information about managed registry, please refer to this link.

About unmanaged registry, user should to create a registry backed by their own Storage Accounts when creating registries.

Upvotes: 2

Related Questions