Skip to content

Commit acc6ca0

Browse files
committed
Updated doc based on feedback
1 parent 12bc982 commit acc6ca0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

articles/aks/aks-zone-resiliency.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Zone resiliency considerations for Azure Kubernetes Service (AKS)
33
titleSuffix: Azure Kubernetes Service
44
description: Learn about the various considerations for zone resiliency in Azure Kubernetes Service (AKS).
55
ms.topic: conceptual
6-
ms.date: 05/30/2024
6+
ms.date: 06/05/2024
77
author: schaffererin
88
ms.author: schaffererin
99
ms.service: azure-kubernetes-service
@@ -22,7 +22,8 @@ In this article, you learn about the various considerations for zone resiliency
2222

2323
AZ resiliency is a key part of running production-grade Kubernetes clusters. With scalability at its core, Kubernetes takes full advantage of independent infrastructure in data centers without incurring additional costs by provisioning new nodes only when necessary.
2424

25-
Simply scaling up or down the number of nodes in a cluster isn't enough to ensure application resiliency. You must gain a deeper understanding of your application and its dependencies to better plan for resiliency. AKS allows you to set up availability zones (AZs) for your clusters and node pools to ensure that your applications are resilient to failures and can continue to serve traffic even if an entire zone goes down.
25+
>[!IMPORTANT]
26+
> Simply scaling up or down the number of nodes in a cluster isn't enough to ensure application resiliency. You must gain a deeper understanding of your application and its dependencies to better plan for resiliency. AKS allows you to set up availability zones (AZs) for your clusters and node pools to ensure that your applications are resilient to failures and can continue to serve traffic even if an entire zone goes down.
2627
2728
## Make your AKS cluster components zone resilient
2829

@@ -131,7 +132,9 @@ When designing a stateless application with AKS, you should use managed Azure se
131132
132133
### Choose the right disk type based on application needs
133134
134-
Azure offers two types of disks for persistent storage: locally redundant storage (LRS) and zone redundant storage (ZRS). LRS replicates your data within a single AZ. ZRS replicates your data across multiple AZs within a region.
135+
Azure offers two types of disks for persistent storage: locally redundant storage (LRS) and zone redundant storage (ZRS). LRS replicates your data within a single AZ. ZRS replicates your data across multiple AZs within a region. Starting from AKS version 1.29, the default storage class uses ZRS disks for persistent storage. For more information, see [AKS built-in storage classes](./azure-csi-disk-storage-provision.md#built-in-storage-classes).
136+
137+
The way your application replicates data can influence your choice of disk. If your application is located in multiple zones and replicates the data from within the application, you can achieve resiliency with an LRS disk in each AZ because if one AZ goes down, the other AZs would have the latest data available to them. If your application layer doesn't handle such replication, ZRS disks are a better choice, as Azure handles the replication in the storage layer.
135138
136139
The following table outlines pros and cons of each disk type:
137140

0 commit comments

Comments
 (0)