Skip to content

Commit 3354c1c

Browse files
authored
Merge pull request #366 from BeyondTheClouds/update_kolla_12
Update kolla-ansible to fix Docker-related crash
2 parents 804a11a + 5776155 commit 3354c1c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

docs/customization/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ values:
1414

1515
.. code-block:: yaml
1616
17-
kolla-ansible: kolla-ansible~=10.0
17+
kolla-ansible: kolla-ansible~=12.0
1818
1919
* a git repository to the Ussuri specific version of OpenStack
2020

enos/services/kolla.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@
1515
from ansible.plugins.loader import filter_loader as ansible_filter_loader
1616
from enos.utils import constants as C
1717

18-
# Default kolla-ansible package to install (OpenStack Wallaby)
19-
KOLLA_PKG = 'kolla-ansible~=12.0'
18+
# Default kolla-ansible package to install (version 12 for OpenStack Wallaby)
19+
# We need recent fix https://review.opendev.org/c/openstack/kolla-ansible/+/872558
20+
# Unfortunately there are no recent releases of kolla-ansible 12 and even the
21+
# stable branch stable/wallaby has disappeared.
22+
kolla_commit_id = '6bc5dfc35117c90b8d2f9d96921286249b99a222'
23+
KOLLA_PKG = f'git+https://github.com/openstack/kolla-ansible.git@{kolla_commit_id}'
2024

2125
# Kolla recommends installing ansible manually. Currently 2.9 is supported.
2226
# Refers to the kolla-ansible User Guides for future versions. See,

0 commit comments

Comments
 (0)