NO-JIRA: fix: make update fails#79353
Conversation
make update is checking for a file that does not exist in the current directory it was moved to the crd sub directory Signed-off-by: ehila <ehila@redhat.com>
|
@eggfoobar: This pull request explicitly references no jira issue. 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. |
|
[REHEARSALNOTIFIER] Note: If this PR includes changes to step registry files ( |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (1)
WalkthroughThe Makefile is updated to place the downloaded ChangesCRD file path reorganization
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 12✅ Passed checks (12 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deepsm007, eggfoobar The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/retest-required |
|
@eggfoobar: 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. |
make update is checking for a file that does not exist in the current directory it was moved to the crd sub directory
#78980 moved the location of this file, causing
make updateto failThis PR fixes the failing
make updatecommand in the OpenShift release CI infrastructure repository. Themake updatetarget relies on several downstream targets, includingupdate_crt_crd, which in turn depends on thecrdsvariable and related download steps.When PR #78980 restructured the cluster folders and moved
testimagestreamtagimport.yamlfromclusters/build-clusters/common/to the newclusters/build-clusters/common/crd/subdirectory, the Makefile was not updated accordingly. This causedmake updateto fail because it was checking for the CRD file in the old, non-existent location.This PR aligns the Makefile with the current repository structure by updating two things:
download_dp_crdtarget now downloadstestimagestreamtagimport.yamlto the correct location atclusters/build-clusters/common/crd/crdsvariable list is updated to reference the file at its new pathThese changes restore functionality to the
make updateworkflow, which is essential for maintaining the OpenShift CI infrastructure configuration.