diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-28 10:23:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 10:23:58 -0400 |
commit | d0b96a541dc69e98d1923f8b297876f787bdb2db (patch) | |
tree | 77e4100a13bbb2a8f8149cee35c842a91b250c74 /docs | |
parent | 2b8cafc0671fbbd155770f044b8216f050877192 (diff) | |
parent | 91ead15283200feb9db8054a26d322fbfdc3fa59 (diff) | |
download | podman-d0b96a541dc69e98d1923f8b297876f787bdb2db.tar.gz podman-d0b96a541dc69e98d1923f8b297876f787bdb2db.tar.bz2 podman-d0b96a541dc69e98d1923f8b297876f787bdb2db.zip |
Merge pull request #14051 from giuseppe/volume-create-noquota-option
volume: add new option -o o=noquota
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-volume-create.1.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-volume-create.1.md b/docs/source/markdown/podman-volume-create.1.md index 365a5acac..06fadcaa1 100644 --- a/docs/source/markdown/podman-volume-create.1.md +++ b/docs/source/markdown/podman-volume-create.1.md @@ -38,7 +38,8 @@ The `device` option sets the device to be mounted, and is equivalent to the `dev The `o` option sets options for the mount, and is equivalent to the `-o` flag to **mount(8)** with these exceptions: - The `o` option supports `uid` and `gid` options to set the UID and GID of the created volume that are not normally supported by **mount(8)**. - - The `o` option supports the `size` option to set the maximum size of the created volume and the `inodes` option to set the maximum number of inodes for the volume. Currently these flags are only supported on "xfs" file system mounted with the `prjquota` flag described in the **xfs_quota(8)** man page. + - The `o` option supports the `size` option to set the maximum size of the created volume, the `inodes` option to set the maximum number of inodes for the volume and `noquota` to completely disable quota support even for tracking of disk usage. Currently these flags are only supported on "xfs" file system mounted with the `prjquota` flag described in the **xfs_quota(8)** man page. + - The `o` option supports . - Using volume options other then the UID/GID options with the **local** driver requires root privileges. When not using the **local** driver, the given options are passed directly to the volume plugin. In this case, supported options are dictated by the plugin in question, not Podman. |