Nova compute conductor novncproxy scheduler - #93
Open
Dyrkon wants to merge 2 commits into
Open
Conversation
Nova API container serving both osapi_compute (port 8774) and metadata (port 8775) APIs via Apache/mod_wsgi. Multi-stage Containerfile built from source with cryptography pinned to 49.0.0 (RPM version) and pyOpenSSL 26.4.0 for compatibility. Includes WSGI wrapper scripts for both APIs (authored for this repo, as upstream nova removed its wsgi scripts). Also includes project-level lock files and sources shared by future nova services. Signed-off-by: Matěj Mudra <mmudra@redhat.com>
Adds nova-compute, nova-conductor, nova-scheduler, and nova-novncproxy to complete the Nova image set. nova-compute includes libvirt/qemu packages, migration infrastructure, and architecture-conditional display drivers (virtio-vga/virtio-gpu). All images use RPM-provided python3-cryptography (FIPS-compliant), filtered from pip lockfile via build.sh. Signed-off-by: Matěj Mudra <mmudra@redhat.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Contributor
|
May you rebase on main? |
amoralej
reviewed
Aug 18, 2026
Comment on lines
+48
to
+51
| sed -i "/^cryptography[=!<>]/Id" /tmp/build-constraints.txt && \ | ||
| sed -i "/^pyOpenSSL[=!<>]/Id" /tmp/build-constraints.txt && \ | ||
| echo "cryptography==43.0.0" >> /tmp/build-constraints.txt && \ | ||
| echo "pyOpenSSL==24.2.1" >> /tmp/build-constraints.txt |
Comment on lines
+74
to
+78
| RUN pip3 install --no-cache-dir --prefix=/usr \ | ||
| -c /tmp/build-constraints.txt \ | ||
| --find-links=/wheels/deps \ | ||
| --find-links=/wheels/pkgs \ | ||
| /wheels/pkgs/*.whl |
Comment on lines
+40
to
+43
| sed -i "/^cryptography[=!<>]/Id" /tmp/build-constraints.txt && \ | ||
| sed -i "/^pyOpenSSL[=!<>]/Id" /tmp/build-constraints.txt && \ | ||
| echo "cryptography==43.0.0" >> /tmp/build-constraints.txt && \ | ||
| echo "pyOpenSSL==24.2.1" >> /tmp/build-constraints.txt |
Comment on lines
+66
to
+70
| RUN pip3 install --no-cache-dir --prefix=/usr \ | ||
| -c /tmp/build-constraints.txt \ | ||
| --find-links=/wheels/deps \ | ||
| --find-links=/wheels/pkgs \ | ||
| /wheels/pkgs/*.whl |
Comment on lines
+39
to
+42
| sed -i "/^cryptography[=!<>]/Id" /tmp/build-constraints.txt && \ | ||
| sed -i "/^pyOpenSSL[=!<>]/Id" /tmp/build-constraints.txt && \ | ||
| echo "cryptography==43.0.0" >> /tmp/build-constraints.txt && \ | ||
| echo "pyOpenSSL==24.2.1" >> /tmp/build-constraints.txt |
Comment on lines
+65
to
+69
| RUN pip3 install --no-cache-dir --prefix=/usr \ | ||
| -c /tmp/build-constraints.txt \ | ||
| --find-links=/wheels/deps \ | ||
| --find-links=/wheels/pkgs \ | ||
| /wheels/pkgs/*.whl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Don't merge before #74