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
If enabled, the root user (UID = 0) of the specified clients doesn't get mapped to nobody (UID = 65534). This is also known as no_root_squash.
155
+
It's overwritten by the squash_mode parameter. Use either squash_mode or has_root_access.
155
156
default_from_api: true
156
157
- name: 'accessType'
157
158
type: Enum
@@ -197,15 +198,17 @@ properties:
197
198
type: Enum
198
199
description: |-
199
200
SquashMode defines how remote user privileges are restricted when accessing an NFS export. It controls how the user identities (like root) are mapped to anonymous users to limit access and enforce security.
201
+
It overwrites the has_root_access parameter. Use either squash_mode or has_root_access. For ALL_SQUASH, access_type needs to be set to READ_WRITE.
200
202
enum_values:
203
+
- 'SQUASH_MODE_UNSPECIFIED'
201
204
- 'NO_ROOT_SQUASH'
202
205
- 'ROOT_SQUASH'
203
206
- 'ALL_SQUASH'
204
-
default_from_api: true
207
+
diff_suppress_func: 'suppressSquashModeDiff'
205
208
- name: 'anonUid'
206
209
type: Integer
207
210
description: |-
208
-
An integer representing the anonymous user ID. Range is 0 to 4294967295. Required when `squash_mode` is `ROOT_SQUASH` or `ALL_SQUASH`.
211
+
An integer representing the anonymous user ID. Range is 0 to 4294967295. Required when `squash_mode` is `ALL_SQUASH`.
0 commit comments