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