
Raises the maximum Ansible version in requirements.txt to Ansible 2.5.x for both kayobe and kolla ansible. Also removes the hack to use a patched parted module for ceph block device management, as Ansible 2.4 contains the required fix. Change-Id: I0d2f564eb1ddb63b07829d6f0d918af26887db97 Story: 2001649 Task: 6668
11 lines
380 B
Django/Jinja
11 lines
380 B
Django/Jinja
{% if kolla_ansible_ctl_install_type == 'source' %}
|
|
# Install Kolla Ansible from source.
|
|
{{ kolla_ansible_source_path }}
|
|
{% else %}
|
|
# Install Kolla Ansible from PyPI.
|
|
kolla-ansible=={{ kolla_openstack_release }}
|
|
{% endif %}
|
|
# Limit the version of ansible used by kolla-ansible to avoid new releases from
|
|
# breaking tested code. Changes to this limit should be tested.
|
|
ansible<2.6
|