Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 094acd5

Browse files
committedDec 12, 2017
[acr] move 'manage size' to best practices
1 parent 29461c6 commit 094acd5

File tree

5 files changed

+29
-21
lines changed

5 files changed

+29
-21
lines changed
 

‎articles/container-registry/container-registry-best-practices.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: timlt
77

88
ms.service: container-registry
99
ms.topic: quickstart
10-
ms.date: 11/05/2017
10+
ms.date: 12/15/2017
1111
ms.author: marsma
1212
---
1313

@@ -58,6 +58,28 @@ When authenticating with an Azure container registry, there are two primary scen
5858

5959
For in-depth information about Azure Container Registry authentication, see [Authenticate with an Azure container registry](container-registry-authentication.md).
6060

61+
## Manage registry size
62+
63+
The storage constraints of each [container registry SKU][container-registry-skus] are intended to align with a typical scenario: **Basic** for getting started, **Standard** for the majority of production applications, and **Premium** for hyper-scale performance and [geo-replication][container-registry-geo-replication]. Throughout the life of your registry, you should manage its size by periodically deleting unused content.
64+
65+
You can find the current usage of a registry in the container registry **Overview** in the Azure portal:
66+
67+
![Registry usage information in the Azure portal][registry-overview-quotas]
68+
69+
You can manage the size of your registry by using the Azure CLI or the Azure portal.
70+
71+
Under **SERVICES**, select **Repositories**, then right-click the repository you want to delete, then select **Delete**.
72+
73+
![Delete a repository in the Azure portal][delete-repository-portal]
74+
6175
## Next steps
6276

63-
Azure Container Registry is available in several tiers, called SKUs, that each provide different capabilities. For details on the available SKUs, see [Azure Container Registry SKUs](container-registry-skus.md).
77+
Azure Container Registry is available in several tiers, called SKUs, that each provide different capabilities. For details on the available SKUs, see [Azure Container Registry SKUs](container-registry-skus.md).
78+
79+
<!-- IMAGES -->
80+
[delete-repository-portal]: ./media/container-registry-best-practices/delete-repository-portal.png
81+
[registry-overview-quotas]: ./media/container-registry-best-practices/registry-overview-quotas.png
82+
83+
<!-- LINKS - Internal -->
84+
[container-registry-geo-replication]: container-registry-geo-replication.md
85+
[container-registry-skus]: container-registry-skus.md

‎articles/container-registry/container-registry-skus.md

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,26 +46,17 @@ The following table details the features and limits of the Basic, Standard, and
4646

4747
[!INCLUDE [container-instances-limits](../../includes/container-registry-limits.md)]
4848

49-
## Manage registry size
50-
The storage constraints of each SKU are intended to align with a typical scenario: Basic for getting started, Standard for the majority of production apps, and Premium for hyper-scale performance and [geo-replication][container-registry-geo-replication]. Throughout the life of your registry, you should manage its size by periodically deleting unused content.
51-
52-
You can find the current usage of a registry in the container registry **Overview** in the Azure portal:
53-
54-
![Registry usage information in the Azure portal][registry-overview-quotas]
55-
56-
You can manage the size of your registry by deleting repositories in the Azure portal.
57-
58-
Under **SERVICES**, select **Repositories**, then right-click the repository you want to delete, then select **Delete**.
59-
60-
![Delete a repository in the Azure portal][delete-repository-portal]
61-
6249
## Changing SKUs
6350

6451
You can change a registry's SKU with the Azure CLI or in the Azure portal.
6552

6653
### Azure CLI
6754

68-
To move between SKUs in the Azure CLI 2.0, use the [az acr update][az-acr-update] command. For example, to switch a Basic registry to Standard
55+
To move between SKUs in the Azure CLI 2.0, use the [az acr update][az-acr-update] command. For example, to switch from Basic or Standard to Premium:
56+
57+
```azurecli
58+
az acr update --name myregistry --resource-group myresourcegroup --sku Premium
59+
```
6960

7061
### Azure portal
7162

@@ -94,8 +85,6 @@ Visit the [ACR Roadmap][acr-roadmap] on GitHub to find information about upcomin
9485
Submit and vote on new feature suggestions in [ACR UserVoice][container-registry-uservoice].
9586

9687
<!-- IMAGES -->
97-
[delete-repository-portal]: ./media/container-registry-skus/delete-repository-portal.png
98-
[registry-overview-quotas]: ./media/container-registry-skus/registry-overview-quotas.png
9988
[update-registry-sku]: ./media/container-registry-skus/update-registry-sku.png
10089

10190
<!-- LINKS - External -->

‎articles/container-registry/container-registry-upgrade.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,6 @@ Once you've upgraded a Classic registry to Basic, Standard, or Premium, Azure no
118118
[update-classic-03-updating]: ./media/container-registry-upgrade\update-classic-03-updating.png
119119
[update-classic-04-updated]: ./media/container-registry-upgrade\update-classic-04-updated.png
120120

121-
<!-- LINKS - external -->
122-
123-
124121
<!-- LINKS - internal -->
125122
[az-acr-update]: /cli/azure/acr#az_acr_update
126123
[azure-cli]: /cli/azure/install-azure-cli

0 commit comments

Comments
 (0)
Please sign in to comment.