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

Fix vif unplug operations failing on RL9.3 #851

Closed
wants to merge 2 commits into from
Closed
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
11 changes: 11 additions & 0 deletions etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,17 @@ kolla_build_blocks:
{% endif %}
{% endraw %}
{% endif %}
# Fix for https://bugs.launchpad.net/ubuntu/+source/pyroute2/+bug/1995469
# which was experienced on Rocky Linux 9.3 kernel. This file is from
# pyroute2 0.6.6 with the fix backported from 0.6.10.
RUN curl -o /var/lib/kolla/venv/lib/python3.9/site-packages/pr2modules/iproute/linux.py https://raw.githubusercontent.com/stackhpc/pyroute2/stackhpc/yoga/pyroute2.core/pr2modules/iproute/linux.py
neutron_base_footer: |
# Fix for neutron_ovn_metadata_agent start up failure caused by https://bugs.launchpad.net/ubuntu/+source/pyroute2/+bug/1995469
# which was experienced on Rocky Linux 9.3 kernel. This file is from
# pyroute2 0.6.6 with the fix backported from 0.6.10.
# This ultimately fixes ssh key authentication failure on newly created
# instances with Rocky Linux 9.3 kernel.
RUN curl -o /var/lib/kolla/venv/lib/python3.9/site-packages/pr2modules/iproute/linux.py https://raw.githubusercontent.com/stackhpc/pyroute2/stackhpc/yoga/pyroute2.core/pr2modules/iproute/linux.py
magnum_base_footer: |
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | head -n -1 | bash
{% raw %}
Expand Down