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

Apply temporary fix for Caracal keystone builds #333

Merged
merged 20 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Test inverse grep
  • Loading branch information
seunghun1ee committed Jul 26, 2024
commit 2a75aef5727bfa49d5261e2f74fc7980df8542dc
4 changes: 2 additions & 2 deletions docker/openstack-base/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ RUN ln -s openstack-base-source/plugins/* /pycadf \

RUN echo $(ls -al /openstack-base-source)

RUN ln -s openstack-base-source/openstack-base-archive* /requirements \
RUN ln -s openstack-base-source/$(ls openstack-base-source | grep -v plugins) /requirements \

{# NOTE(mnasiadka): Remove ovs from upper-constraints.txt because python3-openvswitch
is usually newer than UC entry and older version would get installed
Expand All @@ -199,7 +199,7 @@ RUN ln -s openstack-base-source/openstack-base-archive* /requirements \
&& {{ macros.upper_constraints_remove("ovs") }} \
&& mkdir -p /var/lib/kolla \
&& python3 -m venv --system-site-packages /var/lib/kolla/venv \
; echo $(ls -al /openstack-base-source/openstack-base-archive*) \
; echo $(ls -al openstack-base-source/$(ls openstack-base-source | grep -v plugins)) \
; echo $(ls -al /requirements)

{# Block used for overriding global version constraints.
Expand Down