You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add simplified CLI backup experience for AKS clusters
Added a section on the simplified CLI experience for backing up AKS clusters, detailing the command and its benefits. Updated the updates summary to include April 2026.
Copy file name to clipboardExpand all lines: articles/backup/whats-new.md
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ You can learn more about the new releases by bookmarking this page or by [subscr
19
19
20
20
## Updates summary
21
21
22
+
- April 2026
23
+
-[Simplified CLI experience to enable backup for AKS clusters](#simplified-cli-experience-to-enable-backup-for-aks-clusters)
22
24
- January 2026
23
25
-[Backup support for Confidential VMs (preview)](#backup-support-for-confidential-vms-preview)
24
26
- November 2025
@@ -63,6 +65,34 @@ You can learn more about the new releases by bookmarking this page or by [subscr
63
65
- January 2024
64
66
-[Cross Region Restore support for PostgreSQL by using Azure Backup is now generally available](#cross-region-restore-support-for-postgresql-by-using-azure-backup-is-now-generally-available)
65
67
68
+
## Simplified CLI experience to enable backup for AKS clusters
69
+
70
+
Azure Backup introduces a streamlined Azure CLI experience to onboard Azure Kubernetes Service (AKS) clusters to vaulted backups using a single command.
71
+
72
+
Protecting AKS clusters through CLI involves a sequence of setup tasks such as installing the Backup extension, preparing storage, creating a backup vault and policy, configuring Trusted Access, and setting up the backup instance.
73
+
74
+
To simplify this backup configuration, Microsoft provides an alternate approach to enable backup protection for an AKS cluster by running the following command:
75
+
76
+
```azure-cli
77
+
az dataprotection enable-backup trigger \
78
+
--datasource-type AzureKubernetesService \
79
+
--datasource-id <cluster-arm-id> \
80
+
--backup-strategy <strategy> \
81
+
--backup-configuration-file @config.json
82
+
```
83
+
84
+
Running this command automatically completes the required setup by:
85
+
- Deploying the Backup extension when not already present
86
+
- Preparing or reusing storage required for backups
87
+
- Provisioning or discovering a backup vault and policy
88
+
- Establishing Trusted Access between the vault and AKS cluster
89
+
- Creating the backup instance to start protection
90
+
91
+
You can also supply an optional configuration file to reference existing vaults, policies, storage accounts, or apply tags as part of the enablement workflow.
92
+
93
+
This capability simplifies onboarding of AKS clusters to Azure Backup and supports automation scenarios such as infrastructure‑as‑code and CI/CD pipelines.
94
+
95
+
For more information, see [how to configure backup using a single CLI command](/backup/azure-kubernetes-service-cluster-backup-using-cli#configure-backup-using-a-single-azure-cli-command).
0 commit comments