Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update kolla-ansible to fix Docker-related crash #366

Merged
merged 2 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/customization/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ values:

.. code-block:: yaml

kolla-ansible: kolla-ansible~=10.0
kolla-ansible: kolla-ansible~=12.0

* a git repository to the Ussuri specific version of OpenStack

Expand Down
8 changes: 6 additions & 2 deletions enos/services/kolla.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
from ansible.plugins.loader import filter_loader as ansible_filter_loader
from enos.utils import constants as C

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

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