Skip to content

Commit 4f3264a

Browse files
Merge pull request #251652 from khdownie/kendownie091523
adding new skus for disks
2 parents 4e54d57 + a9b6f24 commit 4f3264a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

articles/storage/container-storage/use-container-storage-with-managed-disks.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Configure Azure Container Storage Preview for use with Azure manage
44
author: khdownie
55
ms.service: azure-container-storage
66
ms.topic: how-to
7-
ms.date: 09/07/2023
7+
ms.date: 09/15/2023
88
ms.author: kendownie
99
ms.custom: references_regions
1010
---
@@ -31,19 +31,21 @@ First, create a storage pool, which is a logical grouping of storage for your Ku
3131

3232
1. Use your favorite text editor to create a YAML manifest file such as `code acstor-storagepool.yaml`.
3333

34-
1. Paste in the following code and save the file. The storage pool **name** value can be whatever you want.
34+
1. Paste in the following code and save the file. The storage pool **name** value can be whatever you want. For **skuName**, specify the level of performance and redundancy. Acceptable values are Premium_LRS, Standard_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, PremiumV2_LRS, and StandardSSD_ZRS. For **storage**, specify the amount of storage capacity for the pool in Gi or Ti.
3535

3636
```yml
37-
apiVersion: containerstorage.azure.com/v1alpha1
37+
apiVersion: containerstorage.azure.com/v1beta1
3838
kind: StoragePool
3939
metadata:
4040
name: azuredisk
4141
namespace: acstor
4242
spec:
4343
poolType:
44-
azureDisk: {}
44+
azureDisk:
45+
skuName: Premium_LRS
4546
resources:
46-
requests: {"storage": 1Ti}
47+
requests:
48+
storage: 1Ti
4749
```
4850
4951
1. Apply the YAML manifest file to create the storage pool.

0 commit comments

Comments
 (0)