Update minimum version of Ansible to 2.6
This is required for the dict2items filter. Change-Id: I60a04e839bf06506ff36c2631a286130d5fde972
This commit is contained in:
parent
15ce0e0600
commit
8c8adb0e45
@ -1,4 +1,4 @@
|
||||
---
|
||||
docker_version_min: '1.10.0'
|
||||
docker_py_version_min: '2.0.0'
|
||||
ansible_version_min: '2.5.0'
|
||||
ansible_version_min: '2.6.0'
|
||||
|
@ -90,7 +90,7 @@ If not installing Kolla Ansible in a virtual environment, skip this section.
|
||||
pip install -U pip
|
||||
|
||||
#. Install `Ansible <http://www.ansible.com>`__. Currently, Kolla Ansible
|
||||
requires Ansible 2.5+.
|
||||
requires Ansible 2.6+.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
@ -122,7 +122,7 @@ If installing Kolla Ansible in a virtual environment, skip this section.
|
||||
sudo pip install -U pip
|
||||
|
||||
#. Install `Ansible <http://www.ansible.com>`__. Currently, Kolla Ansible
|
||||
requires Ansible 2.5+.
|
||||
requires Ansible 2.6+.
|
||||
|
||||
For CentOS or RHEL, run:
|
||||
|
||||
|
4
releasenotes/notes/ansible-min-2.6-4b96795a1cc4b6b2.yaml
Normal file
4
releasenotes/notes/ansible-min-2.6-4b96795a1cc4b6b2.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
upgrade:
|
||||
- |
|
||||
Updates the minimum required version of Ansible to 2.6.
|
@ -113,9 +113,9 @@ function setup_ansible {
|
||||
|
||||
# Test latest ansible version on Ubuntu, minimum supported on others.
|
||||
if [[ $BASE_DISTRO == "ubuntu" ]]; then
|
||||
ANSIBLE_VERSION=">=2.5"
|
||||
ANSIBLE_VERSION=">=2.6"
|
||||
else
|
||||
ANSIBLE_VERSION="<2.6"
|
||||
ANSIBLE_VERSION="<2.7"
|
||||
fi
|
||||
|
||||
# TODO(SamYaple): Move to virtualenv
|
||||
|
Loading…
Reference in New Issue
Block a user