|
| 1 | +--- |
| 2 | +############################################################################### |
| 3 | +# Container engine configuration |
| 4 | + |
| 5 | +# Configures the container engine. Default is 'docker'. |
| 6 | +#container_engine: |
| 7 | + |
| 8 | +# Path to container volumes. Default is '{{ podman_volumes_path }}' if |
| 9 | +# 'container_engine' is set to podman, otherwise '{{ docker_volumes_path }}'. |
| 10 | +#container_engine_volumes_path: |
| 11 | + |
| 12 | +############################################################################### |
| 13 | +# Docker configuration. |
| 14 | + |
| 15 | +# Name of the docker storage driver. Default is 'overlay2'. |
| 16 | +#docker_storage_driver: |
| 17 | + |
| 18 | +# Name of the docker storage LVM volume group. |
| 19 | +#docker_storage_volume_group: |
| 20 | + |
| 21 | +# Name of the docker storage data LVM volume. |
| 22 | +#docker_storage_volume_thinpool: |
| 23 | + |
| 24 | +# Size of the docker storage data LVM volume (see lvol module size argument). |
| 25 | +#docker_storage_volume_thinpool_size: |
| 26 | + |
| 27 | +# Name of the docker storage metadata LVM volume. |
| 28 | +#docker_storage_volume_thinpool_meta: |
| 29 | + |
| 30 | +# Size of the docker storage metadata LVM volume (see lvol module size |
| 31 | +# argument). |
| 32 | +#docker_storage_volume_thinpool_meta_size: |
| 33 | + |
| 34 | +# URL of docker registry |
| 35 | +#docker_registry: |
| 36 | + |
| 37 | +# Whether docker should be configured to use an insecure registry. |
| 38 | +# Default is false, unless docker_registry_enabled is true and |
| 39 | +# docker_registry_enable_tls is false. |
| 40 | +#docker_registry_insecure: |
| 41 | + |
| 42 | +# CA of docker registry |
| 43 | +#docker_registry_ca: |
| 44 | + |
| 45 | +# List of Docker registry mirrors. |
| 46 | +#docker_registry_mirrors: |
| 47 | + |
| 48 | +# Enable live-restore on docker daemon |
| 49 | +#docker_daemon_live_restore: |
| 50 | + |
| 51 | +# Path to docker runtime directory. Default is "", which means to use the |
| 52 | +# default location: '/var/lib/docker'. |
| 53 | +#docker_runtime_directory: |
| 54 | + |
| 55 | +# Path to docker volumes. Default is '{{ docker_runtime_directory | |
| 56 | +# default('/var/lib/docker', true) ~ '/volumes' }}"'. |
| 57 | +#docker_volumes_path: |
| 58 | + |
| 59 | +############################################################################### |
| 60 | +# Podman configuration. |
| 61 | + |
| 62 | +# URL of podman container registry |
| 63 | +#podman_registry: |
| 64 | + |
| 65 | +# Whether podman should be configured to use an insecure registry. |
| 66 | +# Default is false, unless docker_registry_enabled is true and |
| 67 | +# docker_registry_enable_tls is false. |
| 68 | +#podman_registry_insecure: |
| 69 | + |
| 70 | +# Path to podman runtime directory. Default is None, which means to use the |
| 71 | +# default location: '/var/lib/containers/storage'. |
| 72 | +#podman_runtime_directory: |
| 73 | + |
| 74 | +# Path to podman volumes. Default is '{{ podman_runtime_directory | |
| 75 | +# default('/var/lib/containers/storage', true) ~ '/volumes' }}"'. |
| 76 | +#podman_volumes_path: |
| 77 | + |
| 78 | +############################################################################### |
| 79 | +# Dummy variable to allow Ansible to accept this file. |
| 80 | +workaround_ansible_issue_8743: yes |
0 commit comments