Skip to content

Commit ee63c61

Browse files
author
AbhishekMallick01
committed
more updates
1 parent 94137e0 commit ee63c61

5 files changed

+22
-15
lines changed

articles/backup/azure-kubernetes-service-backup-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Kubernetes Service backup - Overview
33
description: This article gives you an understanding about Azure Kubernetes Service (AKS) backup, the cloud-native process to back up and restore the containerized applications and data running in AKS clusters.
44
ms.topic: conceptual
55
ms.service: backup
6-
ms.date: 03/17/2023
6+
ms.date: 03/20/2023
77
author: jyothisuri
88
ms.author: jsuri
99
---

articles/backup/azure-kubernetes-service-cluster-backup-concept.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Kubernetes Service (AKS) backup using Azure Backup prerequisites
33
description: This article explains the prerequisites for Azure Kubernetes Service (AKS) backup.
44
ms.topic: conceptual
55
ms.service: backup
6-
ms.date: 03/17/2023
6+
ms.date: 03/20/2023
77
author: jyothisuri
88
ms.author: jsuri
99
---

articles/backup/azure-kubernetes-service-cluster-backup-support-matrix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Kubernetes Service (AKS) backup support matrix
33
description: This article provides a summary of support settings and limitations of Azure Kubernetes Service (AKS) backup.
44
ms.topic: conceptual
5-
ms.date: 03/03/2023
5+
ms.date: 03/20/2023
66
ms.custom: references_regions
77
ms.service: backup
88
author: jyothisuri
@@ -15,7 +15,7 @@ You can use [Azure Backup](./backup-overview.md) to protect Azure Kubernetes Ser
1515

1616
## Supported regions
1717

18-
AKS backup is available in all the Azure public cloud regions.
18+
AKS backup is available in all the Azure public cloud regions, East US, East US 2 EUAP, North Europe, West Europe, South East Asia, West US 2, East US 2, West US, North Central US, Central US, France Central, Korea Central, Australia East, UK South, East Asia, West Central US, Japan East, South Central US, West US3, Canada Central, Canada East, Australia South East, Central India, Norway East, Germany West Central, Switzerland North, Sweden Central, Japan West, UK West, Korea South, South Africa North, South India, France South, Brazil South, UAE North.
1919

2020
## Limitations
2121

articles/backup/azure-kubernetes-service-cluster-backup.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Back up Azure Kubernetes Service (AKS) using Azure Backup
33
description: This article explains how to back up Azure Kubernetes Service (AKS) using Azure Backup.
44
ms.topic: how-to
55
ms.service: backup
6-
ms.date: 03/17/2023
6+
ms.date: 03/20/2023
77
author: jyothisuri
88
ms.author: jsuri
99
---
@@ -89,27 +89,27 @@ To configure backups for AKS cluster, follow these steps:
8989

9090
5. Select **Install/Fix Extension** to install the **Backup Extension** on the cluster.
9191

92-
6. In the *context* pane, provide the *storage account* and *blob container* where you need to store the backup, and then select **Generate Command**.
92+
6. In the *context* pane, provide the *storage account* and *blob container* where you need to store the backup, and then select **Click on Install Extension**.
9393

9494
7. To enable *Trusted Access* and *other role permissions*, select **Grant Permission** > **Next**.
9595

9696
8. Select the backup policy that defines the schedule and retention policy for AKS backup, and then select **Next**.
9797

98-
10. Select **Add/Edit** to define the *backup instance configuration*.
98+
9. Select **Add/Edit** to define the *backup instance configuration*.
9999

100-
9. In the *context* pane, enter the *cluster resources* that you want to back up.
100+
10. In the *context* pane, enter the *cluster resources* that you want to back up.
101101

102102
Learn about the [backup configurations](#backup-configurations).
103103

104-
10. Select the *snapshot resource group* where *persistent volume (Azure Disk) snapshots* need to be stored, and then select **Validate**.
104+
11. Select the *snapshot resource group* where *persistent volume (Azure Disk) snapshots* need to be stored, and then select **Validate**.
105105

106106
After validation, if the appropriate roles aren't assigned to the vault over snapshot resource group, the error **Role assignment not done** appears.
107107

108-
11. To resolve the error, select the *checkbox* corresponding to the *Datasource*, and then select **Assign Missing Role**.
108+
12. To resolve the error, select the *checkbox* corresponding to the *Datasource*, and then select **Assign Missing Role**.
109109

110-
12. Once the *role assignment* is successful, select **Next**.
110+
13. Once the *role assignment* is successful, select **Next**.
111111

112-
13. Select **Configure Backup**.
112+
14. Select **Configure Backup**.
113113

114114
Once the configuration is complete, the **Backup Instance** gets created.
115115

articles/backup/azure-kubernetes-service-cluster-manage-backups.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage Azure Kubernetes Service (AKS) backups using Azure Backup
33
description: This article explains how to manage Azure Kubernetes Service (AKS) backups using Azure Backup.
44
ms.topic: how-to
55
ms.service: backup
6-
ms.date: 03/17/2023
6+
ms.date: 03/20/2023
77
author: jyothisuri
88
ms.author: jsuri
99
---
@@ -64,6 +64,14 @@ To stop the Backup Extension install operation, use the following command:
6464
az k8s-extension delete --name azure-aks-backup --cluster-type managedClusters --cluster-name aksclustername --resource-group aksclusterrg
6565
```
6666

67+
### Grant permission on storage account
68+
69+
To provide *Storage Account Contributor Permission* to the Extension Identity on storage account, run the following command:
70+
71+
```azurecli-interactive
72+
az role assignment create --assignee-object-id $(az k8s-extension show --name azure-aks-backup --cluster-name aksclustername --resource-group aksclusterresourcegroup --cluster-type managedClusters --query aksAssignedIdentity.principalId --output tsv) --role 'Storage Account Contributor' --scope /subscriptions/subscriptionid/resourceGroups/storageaccountresourcegroup/providers/Microsoft.Storage/storageAccounts/storageaccountname
73+
```
74+
6775
### View Backup Extension installation status
6876

6977
To view the progress of Backup Extension installation, use the following command:
@@ -131,8 +139,7 @@ To enable Trusted Access between Backup vault and AKS cluster, use the following
131139
132140
```
133141

134-
>[!Note]
135-
>AKS backup experience via Azure portal allows you to perform both Backup Extension installation and Trusted Access enablement, required to make the AKS cluster ready for backup and restore operations.
142+
Learn more about [other commands related to Trusted Access](../aks/trusted-access-feature.md#trusted-access-feature-overview).
136143

137144
## Next steps
138145

0 commit comments

Comments
 (0)