From be512215666207f276ec9852f4778d6548f69c70 Mon Sep 17 00:00:00 2001 From: Nidhi Doshi <77081571+doshnid@users.noreply.github.com> Date: Thu, 7 Nov 2024 14:36:17 -0800 Subject: [PATCH 1/2] Update mcc-ent-create-resource-and-cache.md --- .../do/mcc-ent-create-resource-and-cache.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/windows/deployment/do/mcc-ent-create-resource-and-cache.md b/windows/deployment/do/mcc-ent-create-resource-and-cache.md index bae29c6ffa5..9340c11d38f 100644 --- a/windows/deployment/do/mcc-ent-create-resource-and-cache.md +++ b/windows/deployment/do/mcc-ent-create-resource-and-cache.md @@ -303,16 +303,14 @@ Navigate to the Connected Cache resource to delete, then select the **Delete** o # [Azure CLI](#tab/cli) -Use the following command to delete the Connected Cache resource. +Use the following command to delete the cache node under the resource. Replace the following placeholders with your own information: * *\*: Name of the resource group in your subscription. * *\*: Name of your Microsoft Connected Cache for Enterprise resource. -* *\*: The name for your Microsoft Connected Cache node. - ```azurecli-interactive -az mcc ent node delete --cache-node-name --mcc-resource-name --resource-group +az mcc ent resource delete --mcc-resource-name --resource-group ``` --- @@ -323,16 +321,19 @@ On the left pane, select **Cache Nodes** under **Cache Node Management** to see # [Azure CLI](#tab/cli) -Use the following command to delete the cache node under the resource. +Use the following command to delete the Connected Cache node. Replace the following placeholders with your own information: * *\*: Name of the resource group in your subscription. * *\*: Name of your Microsoft Connected Cache for Enterprise resource. +* *\*: The name for your Microsoft Connected Cache node. + ```azurecli-interactive -az mcc ent node delete --mcc-resource-name --resource-group +az mcc ent node delete --cache-node-name --mcc-resource-name --resource-group ``` + ---
@@ -345,4 +346,4 @@ az mcc ent node delete --mcc-resource-name --resource-group Date: Thu, 7 Nov 2024 14:39:42 -0800 Subject: [PATCH 2/2] Update mcc-ent-manage-using-cli.md --- .../deployment/do/mcc-ent-manage-using-cli.md | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/windows/deployment/do/mcc-ent-manage-using-cli.md b/windows/deployment/do/mcc-ent-manage-using-cli.md index ffb7e198d86..3b3ca2357db 100644 --- a/windows/deployment/do/mcc-ent-manage-using-cli.md +++ b/windows/deployment/do/mcc-ent-manage-using-cli.md @@ -140,7 +140,21 @@ az mcc ent node get-provisioning-details --cache-node-name mycachenode --mcc-res >* In the output look for cacheNodeState. If **cacheNodeState = Not Provisioned**, you can continue with cache node provisioning. >* If **cacheNodeState = Not Configured**, then the cache node has not been configured. Configure the cache node before provisioning. -### Example script: +
+ +## Next step + +To deploy the cache node to a **Windows** host machine, see +>[!div class="nextstepaction"] +>[Deploy cache node to Windows](mcc-ent-deploy-to-windows.md) + +To deploy the cache node to a **Linux** host machine, see +>[!div class="nextstepaction"] +>[Deploy cache node to Linux](mcc-ent-deploy-to-linux.md) + +
+ +### Example script to bulk create and configure multiple cache nodes: Below is a pseudocode example of how to script bulk creation and configuration of a Connected Cache Azure resource and multiple Connected Cache cache nodes: @@ -199,12 +213,3 @@ for ($cacheNodeNumber = 1; $cacheNodeNumber -le $cacheNodesToCreate; $cacheNodeN ``` --- -## Next step - -To deploy the cache node to a **Windows** host machine, see ->[!div class="nextstepaction"] ->[Deploy cache node to Windows](mcc-ent-deploy-to-windows.md) - -To deploy the cache node to a **Linux** host machine, see ->[!div class="nextstepaction"] ->[Deploy cache node to Linux](mcc-ent-deploy-to-linux.md)