-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix up containers-storage.conf man page for devicemapper options
Need to document the devicemapper changes. Signed-off-by: Daniel J Walsh <[email protected]>
- Loading branch information
Showing
2 changed files
with
87 additions
and
8 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 |
---|---|---|
|
@@ -37,7 +37,7 @@ The `storage` table supports the following options: | |
Default directory to store all temporary writable content created by container storage programs | ||
|
||
**driver**="" | ||
container storage driver (default is "overlay") | ||
container storage driver (default: "overlay") | ||
Default Copy On Write (COW) container storage driver | ||
|
||
### STORAGE OPTIONS TABLE | ||
|
@@ -48,14 +48,83 @@ The `storage.options` table supports the following options: | |
Paths to additional container image stores. Usually these are read/only and stored on remote network shares. | ||
|
||
**size**="" | ||
Maximum size of a container image. Default is 10GB. This flag can be used to set quota | ||
on the size of container images. | ||
Maximum size of a container image. This flag can be used to set quota on the size of container images. (default: 10GB) | ||
|
||
**override_kernel_check**="" | ||
Tell storage drivers to ignore kernel version checks. Some storage drivers assume that if a kernel is too | ||
old, the driver is not supported. But for kernels that have had the drivers backported, this flag | ||
allows users to override the checks | ||
|
||
[storage.options.thinpool] | ||
|
||
Storage Options for thinpool | ||
|
||
The `storage.options.thinpool` table supports the following options: | ||
|
||
**autoextend_percent**="" | ||
|
||
Tells the thinpool driver the amount by which the thinpool needs to be grown. This is specified in terms of % of pool size. So a value of 20 means that when threshold is hit, pool will be grown by 20% of existing pool size. (default: 20%) | ||
|
||
**autoextend_threshold**="" | ||
|
||
Tells the driver the thinpool extension threshold in terms of percentage of pool size. For example, if threshold is 60, that means when pool is 60% full, threshold has been hit. (default: 80%) | ||
|
||
**basesize**="" | ||
|
||
Specifies the size to use when creating the base device, which limits the size of images and containers. (default: 10g) | ||
|
||
**blocksize**="" | ||
|
||
Specifies a custom blocksize to use for the thin pool. (default: 64k) | ||
|
||
**directlvm_device**="" | ||
|
||
Specifies a custom block storage device to use for the thin pool. Required for using graphdriver `devicemapper`. | ||
|
||
**directlvm_device_force**="" | ||
|
||
Tells driver to wipe device (directlvm_device) even if device already has a filesystem. (default: false) | ||
|
||
**fs**="xfs" | ||
|
||
Specifies the filesystem type to use for the base device. (default: xfs) | ||
|
||
**log_level**="" | ||
|
||
Sets the log level of devicemapper. | ||
|
||
0: LogLevelSuppress 0 (default) | ||
2: LogLevelFatal | ||
3: LogLevelErr | ||
4: LogLevelWarn | ||
5: LogLevelNotice | ||
6: LogLevelInfo | ||
7: LogLevelDebug | ||
|
||
**min_free_space**="" | ||
|
||
Specifies the min free space percent in a thin pool required for new device creation to succeed. Valid values are from 0% - 99%. Value 0% disables. (default: 10%) | ||
|
||
**mkfsarg**="" | ||
|
||
Specifies extra mkfs arguments to be used when creating the base device. | ||
|
||
**mountopt**="" | ||
|
||
Specifies extra mount options used when mounting the thin devices. | ||
|
||
**use_deferred_removal**="" | ||
|
||
Marks devicemapper block device for deferred removal. If the device is in use when its driver attempts to remove it, the driver tells the kernel to remove the device as soon as possible. Note this does not free up the disk space, use deferred deletion to fully remove the thinpool. (default: true). | ||
|
||
**use_deferred_deletion**="" | ||
|
||
Marks thinpool device for deferred deletion. If the thinpool is in use when the driver attempts to delete it, the driver will attempt to delete device every 30 seconds until successful, or when it restarts. Deferred deletion permanently deletes the device and all data stored in the device will be lost. (default: true). | ||
|
||
**xfs_nospace_max_retries**="" | ||
|
||
Specifies the maximum number of retries XFS should attempt to complete IO when ENOSPC (no space) error is returned by underlying storage device. (default: 0, which means to try continuously.) | ||
|
||
# HISTORY | ||
May 2017, Originally compiled by Dan Walsh <[email protected]> | ||
Format copied from crio.conf man page created by Aleksa Sarai <[email protected]> |
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