ART-19543: extensions: use dnf for ART builds, keep rpm-ostree for prow/local#1943
ART-19543: extensions: use dnf for ART builds, keep rpm-ostree for prow/local#1943locriandev wants to merge 2 commits into
Conversation
Switch ART builds to use dnf download instead of rpm-ostree compose extensions to avoid repo naming conflicts. ART builds inject repos via /etc/yum.repos.d/ which have different names than those in the extensions YAML files. Prow and local builds continue to use rpm-ostree compose extensions as before, ensuring no disruption to existing workflows. rh-pre-commit.version: 2.4.0 rh-pre-commit.check-secrets: ENABLED
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: locriandev 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 |
|
@locriandev: This pull request references ART-19543 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
rh-pre-commit.version: 2.4.0 rh-pre-commit.check-secrets: ENABLED
bdfaced to
c6ae832
Compare
|
@locriandev: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Summary
dnf downloadinstead ofrpm-ostree compose extensionsrpm-ostree compose extensionsas before/etc/yum.repos.d/Details
ART builds inject repository configurations via
/etc/yum.repos.d/which have different names than those defined in the extensions YAML files. This mismatch causesrpm-ostree compose extensionsto fail because it expects exact repo name matches.By switching to
dnf download, we allow ART builds to use whatever repo names are present in the environment, while prow and local builds continue with the existingrpm-ostreeworkflow unchanged.