Skip to content

Commit

Permalink
Block Ansible 2.8.14
Browse files Browse the repository at this point in the history
Ansible 2.8.14 changed default permissions of created files to 600 [1].
This breaks kayobe because kolla-ansible generates admin-openrc.sh owned
by root:root with mode 0600, which kayobe fails to read to generate
public-openrc.sh.

Block only Ansible 2.8.14 as the next release should include a revert of
this change.

[1] ansible/ansible#71200

Change-Id: I3de408d384141eee1a088d222dca7d583251a297
Story: 2008011
Task: 40661
  • Loading branch information
priteau committed Aug 13, 2020
1 parent dc5f8e1 commit 00461fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/kolla-ansible/templates/requirements.txt.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ 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,<2.9,!=2.8.9
ansible>=2.6,<2.9,!=2.8.9,!=2.8.14
{% if ansible_os_family == 'RedHat' and ansible_distribution_major_version | int >= 8 %}
selinux
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# process, which may cause wedges in the gate later.

pbr>=2.0 # Apache-2.0
ansible>=2.6.0,<2.9.0,!=2.8.9 # GPLv3
ansible>=2.6.0,<2.9.0,!=2.8.9,!=2.8.14 # GPLv3
cliff>=2.5.0,<2.15.0 # Apache
netaddr!=0.7.16,>=0.7.13 # BSD
PyYAML>=3.10.0 # MIT
Expand Down

0 comments on commit 00461fc

Please sign in to comment.