Update to use new storage.conf configuration files.
This commit is contained in:
parent
064fbb9278
commit
3639c7d5cc
@ -42,7 +42,7 @@ Epoch: 1
|
|||||||
Epoch: 0
|
Epoch: 0
|
||||||
%endif
|
%endif
|
||||||
Version: 0.1.41
|
Version: 0.1.41
|
||||||
Release: 2.dev.git%{shortcommit0}%{?dist}
|
Release: 3.dev.git%{shortcommit0}%{?dist}
|
||||||
Summary: Inspect container images and repositories on registries
|
Summary: Inspect container images and repositories on registries
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: %{git0}
|
URL: %{git0}
|
||||||
@ -430,6 +430,9 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
|
|||||||
%{_datadir}/%{name}/test
|
%{_datadir}/%{name}/test
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 21 2019 Dan Walsh <dwalsh@fedoraproject.org> - - 1:0.1.41-2.dev.git24f4f82
|
||||||
|
- Update to use new storage.conf configuration files.
|
||||||
|
|
||||||
* Tue Nov 19 2019 Dan Walsh <dwalsh@fedoraproject.org> - - 1:0.1.41-2.dev.git24f4f82
|
* Tue Nov 19 2019 Dan Walsh <dwalsh@fedoraproject.org> - - 1:0.1.41-2.dev.git24f4f82
|
||||||
- add clock_adjtime as valid syscall when CAP_SYS_TIME added
|
- add clock_adjtime as valid syscall when CAP_SYS_TIME added
|
||||||
|
|
||||||
|
58
storage.conf
58
storage.conf
@ -21,41 +21,49 @@ graphroot = "/var/lib/containers/storage"
|
|||||||
additionalimagestores = [
|
additionalimagestores = [
|
||||||
]
|
]
|
||||||
|
|
||||||
# Size is used to set a maximum size of the container image. Only supported by
|
|
||||||
# certain container storage drivers.
|
|
||||||
size = ""
|
|
||||||
|
|
||||||
# Path to an helper program to use for mounting the file system instead of mounting it
|
|
||||||
# directly.
|
|
||||||
#mount_program = "/usr/bin/fuse-overlayfs"
|
|
||||||
|
|
||||||
# OverrideKernelCheck tells the driver to ignore kernel checks based on kernel version
|
|
||||||
override_kernel_check = "true"
|
|
||||||
|
|
||||||
# mountopt specifies comma separated list of extra mount options
|
|
||||||
mountopt = "nodev,metacopy=on"
|
|
||||||
|
|
||||||
# Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of
|
# Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of
|
||||||
# a container, to UIDs/GIDs as they should appear outside of the container, and
|
# a container, to the UIDs/GIDs as they should appear outside of the container,
|
||||||
# the length of the range of UIDs/GIDs. Additional mapped sets can be listed
|
# and the length of the range of UIDs/GIDs. Additional mapped sets can be
|
||||||
# and will be heeded by libraries, but there are limits to the number of
|
# listed and will be heeded by libraries, but there are limits to the number of
|
||||||
# mappings which the kernel will allow when you later attempt to run a
|
# mappings which the kernel will allow when you later attempt to run a
|
||||||
# container.
|
# container.
|
||||||
#
|
#
|
||||||
# remap-uids = 0:1668442479:65536
|
# remap-uids = 0:1668442479:65536
|
||||||
# remap-gids = 0:1668442479:65536
|
# remap-gids = 0:1668442479:65536
|
||||||
|
|
||||||
# Remap-User/Group is a name which can be used to look up one or more UID/GID
|
# Remap-User/Group is a user name which can be used to look up one or more UID/GID
|
||||||
# ranges in the /etc/subuid or /etc/subgid file. Mappings are set up starting
|
# ranges in the /etc/subuid or /etc/subgid file. Mappings are set up starting
|
||||||
# with an in-container ID of 0 and the a host-level ID taken from the lowest
|
# with an in-container ID of 0 and then a host-level ID taken from the lowest
|
||||||
# range that matches the specified name, and using the length of that range.
|
# range that matches the specified name, and using the length of that range.
|
||||||
# Additional ranges are then assigned, using the ranges which specify the
|
# Additional ranges are then assigned, using the ranges which specify the
|
||||||
# lowest host-level IDs first, to the lowest not-yet-mapped container-level ID,
|
# lowest host-level IDs first, to the lowest not-yet-mapped in-container ID,
|
||||||
# until all of the entries have been used for maps.
|
# until all of the entries have been used for maps.
|
||||||
#
|
#
|
||||||
# remap-user = "storage"
|
# remap-user = "storage"
|
||||||
# remap-group = "storage"
|
# remap-group = "storage"
|
||||||
|
|
||||||
|
[storage.options.overlay]
|
||||||
|
# ignore_chown_errors can be set to allow a non privileged user running with
|
||||||
|
# a single UID within a user namespace to run containers. The user can pull
|
||||||
|
# and use any image even those with multiple uids. Note multiple UIDs will be
|
||||||
|
# squashed down to the default uid in the container. These images will have no
|
||||||
|
# separation between the users in the container. Only supported for the overlay
|
||||||
|
# and vfs drivers.
|
||||||
|
#ignore_chown_errors = false
|
||||||
|
|
||||||
|
# Path to an helper program to use for mounting the file system instead of mounting it
|
||||||
|
# directly.
|
||||||
|
#mount_program = "/usr/bin/fuse-overlayfs"
|
||||||
|
|
||||||
|
# mountopt specifies comma separated list of extra mount options
|
||||||
|
mountopt = "nodev,metacopy=on"
|
||||||
|
|
||||||
|
# Set to skip a PRIVATE bind mount on the storage home directory.
|
||||||
|
skip_mount_home = "false"
|
||||||
|
|
||||||
|
# Size is used to set a maximum size of the container image.
|
||||||
|
# size = ""
|
||||||
|
|
||||||
[storage.options.thinpool]
|
[storage.options.thinpool]
|
||||||
# Storage Options for thinpool
|
# Storage Options for thinpool
|
||||||
|
|
||||||
@ -106,6 +114,9 @@ mountopt = "nodev,metacopy=on"
|
|||||||
# device.
|
# device.
|
||||||
# mkfsarg = ""
|
# mkfsarg = ""
|
||||||
|
|
||||||
|
# Size is used to set a maximum size of the container image.
|
||||||
|
# size = ""
|
||||||
|
|
||||||
# use_deferred_removal marks devicemapper block device for deferred removal.
|
# use_deferred_removal marks devicemapper block device for deferred removal.
|
||||||
# If the thinpool is in use when the driver attempts to remove it, the driver
|
# If the thinpool is in use when the driver attempts to remove it, the driver
|
||||||
# tells the kernel to remove it as soon as possible. Note this does not free
|
# tells the kernel to remove it as soon as possible. Note this does not free
|
||||||
@ -124,10 +135,3 @@ mountopt = "nodev,metacopy=on"
|
|||||||
# attempt to complete IO when ENOSPC (no space) error is returned by
|
# attempt to complete IO when ENOSPC (no space) error is returned by
|
||||||
# underlying storage device.
|
# underlying storage device.
|
||||||
# xfs_nospace_max_retries = "0"
|
# xfs_nospace_max_retries = "0"
|
||||||
|
|
||||||
# If specified, use OSTree to deduplicate files with the overlay backend
|
|
||||||
ostree_repo = ""
|
|
||||||
|
|
||||||
# Set to skip a PRIVATE bind mount on the storage home directory. Only supported by
|
|
||||||
# certain container storage drivers
|
|
||||||
skip_mount_home = "false"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user