689117
# storage.conf is the configuration file for all tools
689117
# that share the containers/storage libraries
689117
# See man 5 containers-storage.conf for more information
689117
# The "container storage" table contains all of the server options.
689117
[storage]
689117
689117
# Default Storage Driver
689117
driver = "overlay"
689117
689117
# Temporary storage location
689117
runroot = "/var/run/containers/storage"
689117
689117
# Primary Read/Write location of container storage
689117
graphroot = "/var/lib/containers/storage"
689117
689117
[storage.options]
689117
# Storage options to be passed to underlying storage drivers
689117
689117
# AdditionalImageStores is used to pass paths to additional Read/Only image stores
689117
# Must be comma separated list.
689117
additionalimagestores = [
689117
]
689117
689117
# Size is used to set a maximum size of the container image.  Only supported by
689117
# certain container storage drivers.
689117
size = ""
689117
689117
# OverrideKernelCheck tells the driver to ignore kernel checks based on kernel version
689117
override_kernel_check = "true"
689117
689117
# Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of
689117
# a container, to UIDs/GIDs as they should appear outside of the container, and
689117
# the length of the range of UIDs/GIDs.  Additional mapped sets can be listed
689117
# and will be heeded by libraries, but there are limits to the number of
689117
# mappings which the kernel will allow when you later attempt to run a
689117
# container.
689117
#
689117
# remap-uids = 0:1668442479:65536
689117
# remap-gids = 0:1668442479:65536
689117
689117
# Remap-User/Group is a name which can be used to look up one or more UID/GID
689117
# ranges in the /etc/subuid or /etc/subgid file.  Mappings are set up starting
689117
# with an in-container ID of 0 and the a host-level ID taken from the lowest
689117
# range that matches the specified name, and using the length of that range.
689117
# Additional ranges are then assigned, using the ranges which specify the
689117
# lowest host-level IDs first, to the lowest not-yet-mapped container-level ID,
689117
# until all of the entries have been used for maps.
689117
#
689117
# remap-user = "storage"
689117
# remap-group = "storage"
689117
689117
[storage.options.thinpool]
689117
# Storage Options for thinpool
689117
689117
# autoextend_percent determines the amount by which pool needs to be
689117
# grown. This is specified in terms of % of pool size. So a value of 20 means
689117
# that when threshold is hit, pool will be grown by 20% of existing
689117
# pool size.
689117
# autoextend_percent = "20"
689117
689117
# autoextend_threshold determines the pool extension threshold in terms
689117
# of percentage of pool size. For example, if threshold is 60, that means when
689117
# pool is 60% full, threshold has been hit.
689117
# autoextend_threshold = "80"
689117
689117
# basesize specifies the size to use when creating the base device, which
689117
# limits the size of images and containers.
689117
# basesize = "10G"
689117
689117
# blocksize specifies a custom blocksize to use for the thin pool.
689117
# blocksize="64k"
689117
689117
# directlvm_device specifies a custom block storage device to use for the
689117
# thin pool. Required if you setup devicemapper
689117
# directlvm_device = ""
689117
689117
# directlvm_device_force wipes device even if device already has a filesystem
689117
# directlvm_device_force = "True"
689117
689117
# fs specifies the filesystem type to use for the base device.
689117
# fs="xfs"
689117
689117
# log_level sets the log level of devicemapper.
689117
# 0: LogLevelSuppress 0 (Default)
689117
# 2: LogLevelFatal
689117
# 3: LogLevelErr
689117
# 4: LogLevelWarn
689117
# 5: LogLevelNotice
689117
# 6: LogLevelInfo
689117
# 7: LogLevelDebug
689117
# log_level = "7"
689117
689117
# min_free_space specifies the min free space percent in a thin pool require for
689117
# new device creation to succeed. Valid values are from 0% - 99%.
689117
# Value 0% disables
689117
# min_free_space = "10%"
689117
689117
# mkfsarg specifies extra mkfs arguments to be used when creating the base
689117
# device.
689117
# mkfsarg = ""
689117
689117
# mountopt specifies extra mount options used when mounting the thin devices.
689117
# mountopt = ""
689117
689117
# use_deferred_removal Marking device for deferred removal
689117
# use_deferred_removal = "True"
689117
689117
# use_deferred_deletion Marking device for deferred deletion
689117
# use_deferred_deletion = "True"
689117
689117
# xfs_nospace_max_retries specifies the maximum number of retries XFS should
689117
# attempt to complete IO when ENOSPC (no space) error is returned by
689117
# underlying storage device.
689117
# xfs_nospace_max_retries = "0"