Skip to content

Commit 8989856

Browse files
committed
Fix submissions
1 parent 847e3ab commit 8989856

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

articles/azure-arc/container-storage/prepare-linux-edge-volumes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The article describes how to prepare Linux for Edge Volumes using AKS enabled by
2323
2424
### Uninstall previous instance of Azure Container Storage enabled by Azure Arc extension
2525

26-
If you previously installed a version of Azure Container Storage enabled by Azure Arc before version 2.1.0-preview, you must uninstall that previous instance in order to install the newer version. If you installed the 1.2.0-preview release or any release prior to that, please use instructions provided [here](release-notes.md#if-i-installed-a-the-120-preview-or-any-preview-prior-to-that-how-do-i-uninstall-the-extension). Versions after 2.1.0-preview are upgradable and do not require this uninstall.
26+
If you previously installed a version of Azure Container Storage enabled by Azure Arc before version **2.1.0-preview**, you must uninstall that previous instance in order to install the newer version. If you installed the **1.2.0-preview** release or any release prior to that, [use these instructions](release-notes.md#if-i-installed-a-the-120-preview-or-any-preview-prior-to-that-how-do-i-uninstall-the-extension). Versions after **2.1.0-preview** are upgradable and do not require this uninstall.
2727

2828
1. In order to delete the old version of the extension, the Kubernetes resources holding references to old version of the extension must be cleaned up. Any pending resources can delay the clean-up of the extension. There are at least two ways to clean up these resources: either using `kubectl delete <resource_type> <resource_name>`, or by "un-applying" the YAML files used to create the resources. The resources that need to be deleted are typically the pods, the PVC referenced, and the sub-volume CRD (if Cloud Ingest Edge Volume was configured). Alternatively, the following 4 YAML files can be be passed to `kubectl delete -f` using the following commands in the specified order. These variables must be updated with your information:
2929

articles/azure-arc/container-storage/release-notes.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about new features and known issues in Azure Container Storag
44
author: sethmanheim
55
ms.author: sethm
66
ms.topic: how-to
7-
ms.date: 08/26/2024
7+
ms.date: 08/30/2024
88

99
---
1010

@@ -32,29 +32,30 @@ This article provides information about new features and known issues in Azure C
3232

3333
## FAQ
3434

35-
### Uninstall previous instance of Azure Container Storage enabled by Azure Arc extension
35+
### Uninstall previous instance of the Azure Container Storage enabled by Azure Arc extension
3636

37-
#### If I installed a the 1.2.0-preview or any preview prior to that, how do I uninstall the extension?
37+
#### If I installed the 1.2.0-preview or any preview prior to that, how do I uninstall the extension?
3838

39-
If you previously installed a version of Azure Container Storage enabled by Azure Arc before version 2.1.0-preview, you must uninstall that previous instance in order to install the newer version.
40-
41-
> [!NOTE] The extension name for Arc Container Stoarge enabled by Azure Arc was previously "Edge Storage Accelerator". If you still have this instance installed, the extension will be referred to as "microsoft.edgestorageaccelerator" in the Azure Portal.
39+
If you previously installed a version of Azure Container Storage enabled by Azure Arc before version **2.1.0-preview**, you must uninstall that previous instance in order to install the newer version.
4240

43-
1. Before you are able to delete the extension, you will need to delete your configPod(s), Persistent Volume Claim(s), and Persistent Volume(s) using the following commands in the following order. Replace `YOUR_POD_FILE_NAME_HERE`, `YOUR_PVC_FILE_NAME_HERE`, and `YOUR_PV_FILE_NAME_HERE` with your respective file names. If you have more than one of each type, add one line per instance:
41+
> [!NOTE]
42+
> The extension name for Azure Container Storage enabled by Azure Arc was previously **Edge Storage Accelerator**. If you still have this instance installed, the extension is referred to as **microsoft.edgestorageaccelerator** in the Azure portal.
43+
44+
1. Before you can delete the extension, you must delete your configPods, Persistent Volume Claims, and Persistent Volumes using the following commands in this order. Replace `YOUR_POD_FILE_NAME_HERE`, `YOUR_PVC_FILE_NAME_HERE`, and `YOUR_PV_FILE_NAME_HERE` with your respective file names. If you have more than one of each type, add one line per instance:
4445

4546
```bash
4647
kubectl delete -f "YOUR_POD_FILE_NAME_HERE.yaml"
4748
kubectl delete -f "YOUR_PVC_FILE_NAME_HERE.yaml"
4849
kubectl delete -f "YOUR_PV_FILE_NAME_HERE.yaml"
4950
```
5051

51-
1. After you delete your configPod(s), PVC(s), and PV(s) from the previous step, you can uninstall the extension using the following command. Replace `YOUR_RESOURCE_GROUP_NAME_HERE`, `YOUR_CLUSTER_NAME_HERE`, and `YOUR_EXTENSION_NAME_HERE` with your respective information:
52+
1. After you delete your configPods, PVCs, and PVs in the previous step, you can uninstall the extension using the following command. Replace `YOUR_RESOURCE_GROUP_NAME_HERE`, `YOUR_CLUSTER_NAME_HERE`, and `YOUR_EXTENSION_NAME_HERE` with your respective information:
5253

5354
```azurecli
5455
az k8s-extension delete --resource-group YOUR_RESOURCE_GROUP_NAME_HERE --cluster-name YOUR_CLUSTER_NAME_HERE --cluster-type connectedClusters --name YOUR_EXTENSION_NAME_HERE
5556
```
5657

57-
1. If you installed the extension prior to the 1.1.0-preview release (released on 4/19/24) and have a preexisting `config.json` file, be aware that the `config.json` schema changed. Remove the old `config.json` file using `rm config.json`.
58+
1. If you installed the extension prior to the **1.1.0-preview** release (released on 4/19/24) and have a preexisting `config.json` file, be aware that the `config.json` schema changed. Remove the old `config.json` file using `rm config.json`.
5859

5960
### Encryption
6061

0 commit comments

Comments
 (0)