-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation update for POSIX and NFSv4 ACLs support (#147)
- Loading branch information
1 parent
536bb90
commit f9a8dc5
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -576,6 +576,32 @@ parameters: | |
|
||
> The 1.4 version and later of the driver also enables any container user, to have full access to provisioned NFS volume, in earlier versions only `root` user had access | ||
|
||
|
||
## POSIX and NFSv4 ACLs | ||
|
||
CSI PowerStore driver version 2.2.0 and later allows users to set user-defined permissions on NFS target mount directory using POSIX mode bits or NFSv4 ACLs. | ||
|
||
NFSv4 ACLs are supported for NFSv4 shares on NFSv4 enabled NAS servers only. Please ensure the order when providing the NFSv4 ACLs. | ||
|
||
To use this feature, provide permissions in `nfsAcls` parameter in values.yaml, secrets or NFS storage class. | ||
|
||
For example: | ||
|
||
1. POSIX mode bits | ||
|
||
```yaml | ||
nfsAcls: "0755" | ||
``` | ||
|
||
2. NFSv4 ACLs | ||
|
||
```yaml | ||
nfsAcls: "A::OWNER@:rwatTnNcCy,A::GROUP@:rxtncy,A::EVERYONE@:rxtncy,A::[email protected]:rxtncy" | ||
``` | ||
|
||
If no values are specified, default value of "0777" is set. | ||
|
||
|
||
## Dynamic Logging Configuration | ||
|
||
This feature is introduced in CSI Driver for PowerStore version 2.0.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters