Files
kayobe/ansible/roles/kolla-ansible/templates/requirements.txt.j2
Mark Goddard a0b4ab57a4 Bump Ansible to 2.6.x
Bump the maximum supported version of Ansible to 2.6.x for both Kayobe
and Kolla Ansible.

Change-Id: Ia8691d127bb6ce57dcd6fdac25f0357844f5cbaa
Story: 2004287
Task: 27839
2018-11-07 09:18:33 +00:00

16 lines
530 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.7
{% if kolla_ansible_venv_extra_requirements is defined %}
{% for item in kolla_ansible_venv_extra_requirements %}
{{ item }}
{% endfor %}
{% endif %}