00cc4aa038
This patch refactors ensure-docker to use the new ensure-package-repostories role which cleans up the codebase for it a lot. It also converges the Debian and Ubuntu configuration as they were pretty much the same. Also, it updates the Docker to the proper GPG key as while refactoring, it was exposed that it was using the wrong key. Docker uses a different key for Debian and RHEL based packaging. Change-Id: Iad430c6a31be0750c1a0f50e12a26df230de9f4e
15 lines
838 B
YAML
15 lines
838 B
YAML
use_upstream_docker: True
|
|
docker_group: docker
|
|
docker_use_buildset_registry: false
|
|
# NOTE(cloudnull): Packages are loaded through distro specific variables.
|
|
# The default option will return an empty list which
|
|
# allows folks to override these lists as they see fit.
|
|
docker_distro_packages: "{{ _docker_distro_packages | default([]) }}"
|
|
docker_compose_install: false
|
|
docker_upstream_distro_packages: "{{ _docker_upstream_distro_packages | default([]) }}"
|
|
docker_upstream_distro_required_packages: "{{ _docker_upstream_distro_required_packages | default([]) }}"
|
|
docker_upstream_distro_remove_packages: "{{ _docker_upstream_distro_remove_packages | default([]) }}"
|
|
docker_update_channel: stable
|
|
docker_download_fqdn: download.docker.com
|
|
docker_mirror_base_url: "{{ _docker_mirror_base_url | default('') }}"
|