Skip to content

Commit 60f1287

Browse files
author
Junda Chen
committed
update
1 parent 0eeaaec commit 60f1287

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

AKS-Hybrid/create-storage-classes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ az extension add --name k8s-runtime
3535

3636
## [Azure portal](#tab/portal)
3737

38-
During the preview, our publicly available portal extension only targets [provisioned clusters](https://portal.azure.com/?Microsoft_Azure_HybridCompute_managedstorageclass=true) and is behind the feature flag `managedstorageclass` of the `Microsoft_Azure_HybridCompute` extension.
38+
During the preview, our publicly available portal extension only targets AKS Arc clusters and is behind the feature flag `managedstorageclass` of the `Microsoft_Azure_HybridCompute` portal extension. Please use [this link](https://portal.azure.com/?Microsoft_Azure_HybridCompute_managedstorageclass=true) to open Azure Portal and navigate to your AKS Arc cluster resource.
3939

4040
### Enable the service
4141

4242
Select your cluster, then select **Storage classes (preview)** from menu to enter the UI. Select **Enable service** to enable the service in your cluster.
4343

4444
:::image type="content" source="media/create-storage-classes/enable-service.png" alt-text="Screenshot showing enable storage classes service on portal." lightbox="media/create-storage-classes/enable-service.png":::
4545

46-
It might take a few minutes to enable the service in your cluster. When it's ready, the UI looks similar to the following screenshot. Your storage classes and their detected attributes are uploaded to the cloud when they're ready.
46+
It might take a few minutes to enable the service in your cluster. When it's ready, the UI looks similar to the following screenshot. Your storage classes are being uploaded to the cloud.
4747

4848
:::image type="content" source="media/create-storage-classes/storage-classes-summary.png" alt-text="Screenshot showing summary of storage classes on portal." lightbox="media/create-storage-classes/storage-classes-summary.png":::
4949

5050
## [Azure CLI](#tab/cli)
5151

5252
To enable the service in your connected cluster, you must first get the resource ID for your connected cluster. Run the following command:
5353

54-
```powershell
54+
```azurecli
5555
az k8s-runtime storage-class enable --resource-uri <connected cluster resource id>
5656
```
5757

AKS-Hybrid/storage-class-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ The following diagram shows the relationships among pods, volumes, storage class
2525

2626
By default, a new Kubernetes cluster only supports the local disk storage class, which stores data in a local disk. This class has limitations and can't be directly used in most production scenarios. For example, local disk volumes can only support `ReadWriteOnce` access mode, meaning the volumes can only be accessed by one pod at a time. However, [SQL Managed Instance enabled by Azure Arc](/azure/azure-arc/data/managed-instance-overview) requires [its backup volume to support the ReadWriteMany(RWX) access mode](/azure/azure-arc/data/create-sql-managed-instance?tabs=directly-connected-mode#create-an-azure-arc-enabled-sql-managed-instance), meaning the volume should support simultaneous reads and writes from multiple pods.
2727

28-
Storage is important for any running systems, so most companies might have already set up storage infrastructures for existing systems. The Arc storage service provides a unified experience for creating storage classes on top of existing storage. With the Arc Storage Class service, cluster administrators only need to specify the name and type of the storage class to be created, and Arc Storage Class installs storage classes and their respective CSI components into their clusters. The installed components are managed by Azure, so updates are automatically installed and security vulnerabilities are automatically fixed.
28+
Storage is important for any running systems, so most companies might have already set up storage infrastructures for existing systems. The Arc-enabled storage class service provides a unified experience for creating storage classes on top of existing storage. With the Arc-enabled storage class service, cluster administrators only need to specify the name and type of the storage class to be created, and Arc-enabled storage class service installs storage classes and their respective CSI components into their clusters. The installed components are managed by Azure, so updates are automatically installed and security vulnerabilities are automatically fixed.
2929

3030
### Scenario 1: Connect to existing NAS
3131

32-
You might be already using network-attached storage (NAS) for storage pool and high availability capabilities. By default, Kubernetes can't use NAS for storage. With the Arc Storage Class service, you can easily create an NFS storage class that connects to your existing NAS using the standard NFS protocol that NAS devices should support. You can also create multiple NFS storage classes to connect to different NAS devices.
32+
You might be already using network-attached storage (NAS) for storage pool and high availability capabilities. By default, Kubernetes can't use NAS for storage. With the Arc-enabled storage class service, you can easily create an NFS storage class that connects to your existing NAS using the standard NFS protocol that NAS devices should support. You can also create multiple NFS storage classes to connect to different NAS devices.
3333

3434
### Scenario 2: Connect to existing Windows Server clusters
3535

36-
If your company runs Windows Server clusters like HCI, these clusters usually use SMB drives for storage. Arc Storage Class provides SMB storage classes so these existing clusters can be easily used by your new Arc-connected Kubernetes cluster.
36+
If your company runs Windows Server clusters like HCI, these clusters usually use SMB drives for storage. Arc-enabled storage class service provides SMB storage classes so these existing clusters can be easily used by your new Arc-connected Kubernetes cluster.
3737

3838
## Next steps
3939

0 commit comments

Comments
 (0)