# Copyright © 2020 Interplanetary Database Association e.V., # Planetmint and IPDB software contributors. # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # Code is Apache-2.0 and docs are CC-BY-4.0 --- uninstall_old_version: false #[true, false] docker_edition: 'ce' #[ce, ee] Currently, onlt CE is supported docker_pkg: "docker-{{ docker_edition }}" #[docker-ce, docker-ee] docker_update_channel: "stable" #[stable, edge] # Host configuration distribution_name: "{{ ansible_distribution|lower }}" distribution_codename: "{{ ansible_distribution_release|lower }}" distribution_major: "{{ ansible_distribution_major_version }}" server_arch: "amd64" #[amd64, armhf, s390x] # Docker Repositories docker_apt_repo: "deb [arch={{ server_arch }}] https://download.docker.com/linux/{{ distribution_name }} {{ distribution_codename }} {{ docker_update_channel }}" apt_key_fingerprint: "9DC858229FC7DD38854AE2D88D81803C0EBFCD88" apt_key_url: "https://download.docker.com/linux/{{ distribution_name }}/gpg" docker_yum_repo: "https://download.docker.com/linux/{{ distribution_name }}/{{ distribution_major }}/$basearch/{{ docker_update_channel }}" docker_dnf_repo: "https://download.docker.com/linux/{{ distribution_name }}/{{ docker_pkg }}.repo" # Epel repo epel_repo_url: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm" epel_repo_gpg_key_url: "/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-{{ ansible_distribution_major_version }}" epel_repofile_path: "/etc/yum.repos.d/epel.repo" # Docker configuration planetmint_docker_net: "planetmint_docker_net"