From 38b072112d63e7d73856ae741e28dbbf88a796c9 Mon Sep 17 00:00:00 2001 From: Jake Frulla Date: Tue, 7 May 2024 10:27:01 -0600 Subject: [PATCH] Added Individual User Quota Example (#965) --- source/customizations.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/customizations.rst b/source/customizations.rst index 07816e40c..059effcb7 100644 --- a/source/customizations.rst +++ b/source/customizations.rst @@ -904,6 +904,18 @@ If the quota is defined as a ``user`` quota, then it applies to only disk resources used by the user alone. This is the default type of quota object and is given in the following format: +.. code:: json + + { + "type": "user", + "block_limit": 5000000, + "file_limit": 1000000, + "path": "/path/to/volume2", + "total_block_usage": 400000, + "total_file_usage": 1000, + "user": "user1" + } + .. warning:: A block must be equal to 1 KiB for proper conversions.