efb8b8bd27
In the Train cycle, Kolla Ansible added support for docker_custom_config, and writes out configuration to /etc/docker/daemon.json. This will conflict with Kayobe's configuration of that file, and changes made by kayobe will be reversed when kolla-ansible bootstrap-servers is run. This change uses the new variable to pass daemon.json configuration through to kolla ansible. Because the ordering has changed, we also need to separate out the devicemapper setup and run this prior to starting docker. Change-Id: Idc3fa9fefd8242ef9db76d4d773885e3594b453a Depends-On: https://review.opendev.org/691001 Story: 2006764 Task: 37277
26 lines
807 B
YAML
26 lines
807 B
YAML
---
|
|
# Name of the docker storage driver.
|
|
docker_storage_driver: devicemapper
|
|
|
|
# Name of the docker storage LVM volume group.
|
|
docker_storage_volume_group:
|
|
|
|
# Name of the docker storage data LVM volume.
|
|
docker_storage_volume_thinpool:
|
|
|
|
# Size of the docker storage data LVM volume (see lvol module size argument).
|
|
docker_storage_volume_thinpool_size:
|
|
|
|
# Name of the docker storage metadata LVM volume.
|
|
docker_storage_volume_thinpool_meta:
|
|
|
|
# Size of the docker storage metadata LVM volume (see lvol module size
|
|
# argument).
|
|
docker_storage_volume_thinpool_meta_size:
|
|
|
|
# Threshold at which to extend thin-provisioned docker storage volumes.
|
|
docker_storage_thinpool_autoextend_threshold: 80
|
|
|
|
# Percentage by which to extend thin-provisioned docker storage volumes.
|
|
docker_storage_thinpool_autoextend_percent: 20
|