kolla-ansible/ansible/roles/prechecks/vars/main.yml
Mark Goddard d20c65ed48 Check supported host OS distributions in prechecks
This should help to ensure that users are running tested and supported
host OS distributions.

Change-Id: I6ee76463d284ad4f3646af1c7ec2b7e50e2f3b15
Partially-Implements: blueprint improve-prechecks
2020-03-10 11:04:29 +00:00

20 lines
464 B
YAML

---
docker_version_min: '1.10.0'
docker_py_version_min: '2.0.0'
ansible_version_min: '2.8'
ansible_version_max: '2.9'
# Top level keys should match ansible_distribution.
# These map to lists of supported releases (ansible_distribution_release) or
# versions (ansible_distribution_version or ansible_distribution_major_version)
# for that distribution.
host_os_distributions:
CentOS:
- "8"
Debian:
- "buster"
RHEL:
- "8"
Ubuntu:
- "bionic"