Skip to content

Commit 4153e5e

Browse files
authored
Merge pull request #281399 from MicrosoftDocs/main
7/22 11:00 AM IST Publish
2 parents 76d95a8 + 3b1eaf4 commit 4153e5e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

articles/aks/azure-csi-files-storage-provision.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to create a static or dynamic persistent volume with Azur
55
ms.topic: article
66
ms.custom: devx-track-azurecli
77
ms.subservice: aks-storage
8-
ms.date: 07/09/2024
8+
ms.date: 07/20/2024
99
author: tamram
1010
ms.author: tamram
1111

@@ -108,6 +108,7 @@ For more information on Kubernetes storage classes for Azure Files, see [Kuberne
108108
- mfsymlinks
109109
- cache=strict
110110
- actimeo=30
111+
- nobrl # disable sending byte range lock requests to the server and for applications which have challenges with posix locks
111112
parameters:
112113
skuName: Premium_LRS
113114
```
@@ -240,6 +241,7 @@ mountOptions:
240241
- mfsymlinks
241242
- cache=strict
242243
- actimeo=30
244+
- nobrl # disable sending byte range lock requests to the server and for applications which have challenges with posix locks
243245
parameters:
244246
skuName: Premium_LRS
245247
```
@@ -368,7 +370,7 @@ Kubernetes needs credentials to access the file share created in the previous st
368370
- mfsymlinks
369371
- cache=strict
370372
- nosharesock
371-
- nobrl
373+
- nobrl # disable sending byte range lock requests to the server and for applications which have challenges with posix locks
372374
```
373375

374376
2. Create the persistent volume using the [`kubectl create`][kubectl-create] command.
@@ -470,7 +472,7 @@ spec:
470472
volumeAttributes:
471473
secretName: azure-secret # required
472474
shareName: aksshare # required
473-
mountOptions: 'dir_mode=0777,file_mode=0777,cache=strict,actimeo=30,nosharesock' # optional
475+
mountOptions: 'dir_mode=0777,file_mode=0777,cache=strict,actimeo=30,nosharesock,nobrl' # optional
474476
```
475477

476478
2. Create the pod using the [`kubectl apply`][kubectl-apply] command.

articles/aks/csi-migrate-in-tree-volumes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Migrate from in-tree storage class to CSI drivers on Azure Kubernetes Service (AKS)
33
description: Learn how to migrate from in-tree persistent volume to the Container Storage Interface (CSI) driver in an Azure Kubernetes Service (AKS) cluster.
44
ms.topic: article
5-
ms.date: 01/11/2024
5+
ms.date: 07/20/2024
66
author: mgoedtel
77
ms.subservice: aks-storage
88
---
@@ -444,7 +444,7 @@ Migration from in-tree to CSI is supported by creating a static volume:
444444
- mfsymlinks
445445
- cache=strict
446446
- nosharesock
447-
- nobrl
447+
- nobrl # disable sending byte range lock requests to the server and for applications which have challenges with posix locks
448448
```
449449
450450
5. Create a file named *azurefile-mount-pvc.yaml* file with a *PersistentVolumeClaim* that uses the *PersistentVolume* using the following code.

0 commit comments

Comments
 (0)