Skip to content
Snippets Groups Projects
Commit 04edf61e authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Update minimum version of Ansible to 2.6"

parents d302910e 8c8adb0e
No related branches found
No related tags found
No related merge requests found
--- ---
docker_version_min: '1.10.0' docker_version_min: '1.10.0'
docker_py_version_min: '2.0.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. ...@@ -90,7 +90,7 @@ If not installing Kolla Ansible in a virtual environment, skip this section.
pip install -U pip pip install -U pip
#. Install `Ansible <http://www.ansible.com>`__. Currently, Kolla Ansible #. Install `Ansible <http://www.ansible.com>`__. Currently, Kolla Ansible
requires Ansible 2.5+. requires Ansible 2.6+.
.. code-block:: console .. code-block:: console
...@@ -122,7 +122,7 @@ If installing Kolla Ansible in a virtual environment, skip this section. ...@@ -122,7 +122,7 @@ If installing Kolla Ansible in a virtual environment, skip this section.
sudo pip install -U pip sudo pip install -U pip
#. Install `Ansible <http://www.ansible.com>`__. Currently, Kolla Ansible #. Install `Ansible <http://www.ansible.com>`__. Currently, Kolla Ansible
requires Ansible 2.5+. requires Ansible 2.6+.
For CentOS or RHEL, run: For CentOS or RHEL, run:
......
---
upgrade:
- |
Updates the minimum required version of Ansible to 2.6.
...@@ -113,9 +113,9 @@ function setup_ansible { ...@@ -113,9 +113,9 @@ function setup_ansible {
# Test latest ansible version on Ubuntu, minimum supported on others. # Test latest ansible version on Ubuntu, minimum supported on others.
if [[ $BASE_DISTRO == "ubuntu" ]]; then if [[ $BASE_DISTRO == "ubuntu" ]]; then
ANSIBLE_VERSION=">=2.5" ANSIBLE_VERSION=">=2.6"
else else
ANSIBLE_VERSION="<2.6" ANSIBLE_VERSION="<2.7"
fi fi
# TODO(SamYaple): Move to virtualenv # TODO(SamYaple): Move to virtualenv
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment