Default variable details
Some of debops.docker_server default variables have more extensive
configuration than simple strings or lists, here you can find documentation
and examples for them.
docker_server__configuration
The docker_server__*_configuration variables contain the contents of the
/etc/docker/daemon.json configuration file in the form of YAML
dictionary entries in a list. These entries are merged into a complete JSON
file during configuration file generation. The Universal Configuration
system is used to manage the file contents and can be used to easily set up all
needed Docker configuration options.
Users can read the Docker documentation about the
/etc/docker/daemon.json configuration file to learn more details about
it and what can be set using this file.
Examples
Change the default data directory of the Docker daemon (directory must be created separately, for example with the debops.resources role):
docker_server__configuration:
- name: 'rootdir'
config:
'data-root': '/srv/data/docker'
state: 'present'
Set custom object labels on the Docker daemon:
docker_server__configuration:
- name: 'custom-labels'
config:
'labels':
- 'com.example.environment=production'
- 'com.example.storage=extfs'
state: 'present'
Users can check the docker_server__default_configuration for the
default configuration options included in the role.
Syntax
Configuration entries are defined as YAML dictionaries with specific syntax:
nameRequired. An identifier for a particular section of the configuration, not used otherwise. Entries with the same
nameparameter are merged together and can affect each other in order of appearance.configRequired. YAML dictionary with Docker configuration options, which will be merged recursively during generation of the
/etc/docker/daemon.jsonconfiguration file.stateOptional. If not specified or
present, a given configuration will be included in the generated configuration file. Ifabsent, a given configuration will not be included in the generated file (this cannot be used to remove existing configuration entries if they are specified in an entry with a differentname). Ifignore, a given configuration entry will not be evaluated during role execution.