Skip to content

OCPBUGS-58259: Reduce Frequency of Update Requests for Copied CSVs (#3597) [release-4.19] #1030

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

Merged
merged 1 commit into from
Jul 8, 2025

Conversation

tmshort
Copy link
Contributor

@tmshort tmshort commented Jun 30, 2025

Use a TransformFunc to generate hashes of the copied CSVs to reduced storage needs, and to minimize API access.

The following is the complete unsquashed commit listing

  • (bugfix): reduce frequency of update requests for CSVs

by adding annotations to copied CSVs that are populated with hashes of the non-status fields and the status fields.

This seems to be how this was intended to work, but was not actually working this way because the annotations never actually existed on the copied CSV. This resulted in a hot loop of update requests being made on all copied CSVs.

  • update unit tests

  • updates to test so far

  • Small changes

  • Add metadata drift guard to copyToNamespace

Since we switched to a PartialObjectMetadata cache to save memory, we lost visibility into copied CSV spec and status fields, and the reintroduced nonStatusCopyHash/statusCopyHash annotations only partially solved the problem. Manual edits to a copied CSV could still go undetected, causing drift without reconciliation.

This commit adds two new annotations: olm.operatorframework.io/observedGeneration and olm.operatorframework.io/observedResourceVersion. It implements a mechanism to guard agains metadata drift at the top of the existing-copy path in copyToNamespace. If a stored observedGeneration or observedResourceVersion no longer matches the live object, the operator now:

  • Updates the spec and hash annotations
  • Updates the status subresource
  • Records the new generation and resourceVersion in the guard annotations

Because the guard only fires when its annotations are already present, all existing unit tests pass unchanged. We preserve the memory benefits of the metadata‐only informer, avoid extra GETs, and eliminate unnecessary API churn.

Future work may explore a WithTransform informer to regain full object visibility with minimal memory impact.

  • Tests for metadata guard

Verifies that exactly three updates (spec, status, guard) are issued when the observedGeneration doesn’t match.

  • Persist observed annotations on all status updates

  • GCI the file

  • Use TransformFunc

Unit tests not updated

  • Update operatorgroup tests to compile

  • Restore operatorgroup_test from master

Remove metadatalister

  • Remove more PartialObjectMetadata

  • Remove hashes from operator_test

  • Fix error messages for static-analysis

  • Update test annotations and test client

  • Rename pruning to listerwatcher

  • Set resync to 6h

  • Add CSV copy revert syncer

  • Log tweaks

  • Consolidate revert and gc syncers

  • Add logging and reduce the amount of metadata in the TransformFunc

  • Handle the copy CSV revert via a requeue of the primary CSV

  • Revert "Set resync to 6h"

This reverts commit 855f940a2199bd4071c51f14ef44728550bf13cf.

  • Add delete handler for copied csv

  • Revert whitespace change

  • Rename function, fix comment


Upstream-repository: operator-lifecycle-manager
Upstream-commit: d055f28750cf62f966f566d36990fff5285c7a71 (cherry picked from commit bc111a9)

…(#3597)

* (bugfix): reduce frequency of update requests for CSVs

by adding annotations to copied CSVs that are populated with
hashes of the non-status fields and the status fields.

This seems to be how this was intended to work, but was not actually
working this way because the annotations never actually existed on the
copied CSV. This resulted in a hot loop of update requests being made
on all copied CSVs.

Signed-off-by: everettraven <[email protected]>

* update unit tests

Signed-off-by: everettraven <[email protected]>

* updates to test so far

Signed-off-by: everettraven <[email protected]>

* Small changes

Signed-off-by: Brett Tofel <[email protected]>

* Add metadata drift guard to copyToNamespace

Since we switched to a PartialObjectMetadata cache to save memory, we lost visibility into copied CSV spec and status fields, and the reintroduced nonStatusCopyHash/statusCopyHash annotations only partially solved the problem. Manual edits to a copied CSV could still go undetected, causing drift without reconciliation.

This commit adds two new annotations: olm.operatorframework.io/observedGeneration and olm.operatorframework.io/observedResourceVersion. It implements a mechanism to guard agains metadata drift at the top of the existing-copy path in copyToNamespace. If a stored observedGeneration or observedResourceVersion no longer matches the live object, the operator now:

      • Updates the spec and hash annotations
      • Updates the status subresource
      • Records the new generation and resourceVersion in the guard annotations

Because the guard only fires when its annotations are already present, all existing unit tests pass unchanged. We preserve the memory benefits of the metadata‐only informer, avoid extra GETs, and eliminate unnecessary API churn.

Future work may explore a WithTransform informer to regain full object visibility with minimal memory impact.

Signed-off-by: Brett Tofel <[email protected]>

* Tests for metadata guard

Verifies that exactly three updates (spec, status, guard) are issued when the observedGeneration doesn’t match.

Signed-off-by: Brett Tofel <[email protected]>

* Persist observed annotations on all status updates

Signed-off-by: Brett Tofel <[email protected]>

* GCI the file

Signed-off-by: Brett Tofel <[email protected]>

* Use TransformFunc

Unit tests not updated

Signed-off-by: Todd Short <[email protected]>

* Update operatorgroup tests to compile

Signed-off-by: Todd Short <[email protected]>

* Restore operatorgroup_test from master

Remove metadatalister

Signed-off-by: Todd Short <[email protected]>

* Remove more PartialObjectMetadata

Signed-off-by: Todd Short <[email protected]>

* Remove hashes from operator_test

Signed-off-by: Todd Short <[email protected]>

* Fix error messages for static-analysis

Signed-off-by: Todd Short <[email protected]>

* Update test annotations and test client

Signed-off-by: Todd Short <[email protected]>

* Rename pruning to listerwatcher

Signed-off-by: Todd Short <[email protected]>

* Set resync to 6h

Signed-off-by: Todd Short <[email protected]>

* Add CSV copy revert syncer

Signed-off-by: Todd Short <[email protected]>

* Log tweaks

Signed-off-by: Todd Short <[email protected]>

* Consolidate revert and gc syncers

Signed-off-by: Todd Short <[email protected]>

* Add logging and reduce the amount of metadata in the TransformFunc

Signed-off-by: Todd Short <[email protected]>

* Handle the copy CSV revert via a requeue of the primary CSV

Signed-off-by: Todd Short <[email protected]>

* Revert "Set resync to 6h"

This reverts commit 855f940a2199bd4071c51f14ef44728550bf13cf.

Signed-off-by: Todd Short <[email protected]>

* Add delete handler for copied csv

Signed-off-by: Todd Short <[email protected]>

* Revert whitespace change

Signed-off-by: Todd Short <[email protected]>

* Rename function, fix comment

Signed-off-by: Todd Short <[email protected]>

---------

Signed-off-by: everettraven <[email protected]>
Signed-off-by: Brett Tofel <[email protected]>
Signed-off-by: Todd Short <[email protected]>
Co-authored-by: everettraven <[email protected]>
Co-authored-by: Brett Tofel <[email protected]>
Upstream-repository: operator-lifecycle-manager
Upstream-commit: d055f28750cf62f966f566d36990fff5285c7a71
(cherry picked from commit bc111a9)
@openshift-ci-robot openshift-ci-robot added jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Jun 30, 2025
@openshift-ci-robot
Copy link

@tmshort: This pull request references Jira Issue OCPBUGS-58259, which is invalid:

  • expected the bug to target either version "4.19." or "openshift-4.19.", but it targets "4.20" instead
  • release note text must be set and not match the template OR release note type must be set to "Release Note Not Required". For more information you can reference the OpenShift Bug Process.
  • expected dependent Jira Issue OCPBUGS-37982 to be in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but it is ON_QA instead
  • expected dependent Jira Issue OCPBUGS-37982 to target a version in 4.20.0, but it targets "4.20" instead

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

The bug has been updated to refer to the pull request using the external bug tracker.

In response to this:

Use a TransformFunc to generate hashes of the copied CSVs to reduced storage needs, and to minimize API access.

The following is the complete unsquashed commit listing

  • (bugfix): reduce frequency of update requests for CSVs

by adding annotations to copied CSVs that are populated with hashes of the non-status fields and the status fields.

This seems to be how this was intended to work, but was not actually working this way because the annotations never actually existed on the copied CSV. This resulted in a hot loop of update requests being made on all copied CSVs.

  • update unit tests

  • updates to test so far

  • Small changes

  • Add metadata drift guard to copyToNamespace

Since we switched to a PartialObjectMetadata cache to save memory, we lost visibility into copied CSV spec and status fields, and the reintroduced nonStatusCopyHash/statusCopyHash annotations only partially solved the problem. Manual edits to a copied CSV could still go undetected, causing drift without reconciliation.

This commit adds two new annotations: olm.operatorframework.io/observedGeneration and olm.operatorframework.io/observedResourceVersion. It implements a mechanism to guard agains metadata drift at the top of the existing-copy path in copyToNamespace. If a stored observedGeneration or observedResourceVersion no longer matches the live object, the operator now:

 • Updates the spec and hash annotations
 • Updates the status subresource
 • Records the new generation and resourceVersion in the guard annotations

Because the guard only fires when its annotations are already present, all existing unit tests pass unchanged. We preserve the memory benefits of the metadata‐only informer, avoid extra GETs, and eliminate unnecessary API churn.

Future work may explore a WithTransform informer to regain full object visibility with minimal memory impact.

  • Tests for metadata guard

Verifies that exactly three updates (spec, status, guard) are issued when the observedGeneration doesn’t match.

  • Persist observed annotations on all status updates

  • GCI the file

  • Use TransformFunc

Unit tests not updated

  • Update operatorgroup tests to compile

  • Restore operatorgroup_test from master

Remove metadatalister

  • Remove more PartialObjectMetadata

  • Remove hashes from operator_test

  • Fix error messages for static-analysis

  • Update test annotations and test client

  • Rename pruning to listerwatcher

  • Set resync to 6h

  • Add CSV copy revert syncer

  • Log tweaks

  • Consolidate revert and gc syncers

  • Add logging and reduce the amount of metadata in the TransformFunc

  • Handle the copy CSV revert via a requeue of the primary CSV

  • Revert "Set resync to 6h"

This reverts commit 855f940a2199bd4071c51f14ef44728550bf13cf.

  • Add delete handler for copied csv

  • Revert whitespace change

  • Rename function, fix comment


Upstream-repository: operator-lifecycle-manager
Upstream-commit: d055f28750cf62f966f566d36990fff5285c7a71 (cherry picked from commit bc111a9)

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.

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jun 30, 2025
@tmshort
Copy link
Contributor Author

tmshort commented Jun 30, 2025

/jira refresh

@openshift-ci-robot
Copy link

@tmshort: This pull request references Jira Issue OCPBUGS-58259, which is invalid:

  • release note text must be set and not match the template OR release note type must be set to "Release Note Not Required". For more information you can reference the OpenShift Bug Process.
  • expected dependent Jira Issue OCPBUGS-37982 to be in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but it is ON_QA instead

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/jira refresh

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.

@tmshort
Copy link
Contributor Author

tmshort commented Jun 30, 2025

/jira refresh

@openshift-ci-robot
Copy link

@tmshort: This pull request references Jira Issue OCPBUGS-58259, which is invalid:

  • expected dependent Jira Issue OCPBUGS-37982 to be in one of the following states: VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA), but it is ON_QA instead

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/jira refresh

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.

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Jun 30, 2025
Copy link
Contributor

openshift-ci bot commented Jun 30, 2025

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: oceanc80, tmshort

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@oceanc80
Copy link
Contributor

/label backport-risk-assessed

@openshift-ci openshift-ci bot added the backport-risk-assessed Indicates a PR to a release branch has been evaluated and considered safe to accept. label Jun 30, 2025
@tmshort tmshort changed the title OCPBUGS-58259: Reduce Frequency of Update Requests for Copied CSVs (#3597) OCPBUGS-58259: Reduce Frequency of Update Requests for Copied CSVs (#3597) [release-4.19] Jun 30, 2025
@kuiwang02
Copy link

/hold
I will pre-verify it soon. and will unhold it after it is done.

thanks

@openshift-ci openshift-ci bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jul 1, 2025
@kuiwang02
Copy link

pre-verification pass
/unhold

@openshift-ci openshift-ci bot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jul 1, 2025
@kuiwang02
Copy link

/label qe-approved

@openshift-ci openshift-ci bot added the qe-approved Signifies that QE has signed off on this PR label Jul 1, 2025
@openshift-ci-robot openshift-ci-robot added jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. and removed jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Jul 1, 2025
@openshift-ci-robot
Copy link

@tmshort: This pull request references Jira Issue OCPBUGS-58259, which is valid.

7 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (4.19.z) matches configured target version for branch (4.19.z)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
  • release note text is set and does not match the template
  • dependent bug Jira Issue OCPBUGS-37982 is in the state Verified, which is one of the valid states (VERIFIED, RELEASE PENDING, CLOSED (ERRATA), CLOSED (CURRENT RELEASE), CLOSED (DONE), CLOSED (DONE-ERRATA))
  • dependent Jira Issue OCPBUGS-37982 targets the "4.20.0" version, which is one of the valid target versions: 4.20.0
  • bug has dependents

Requesting review from QA contact:
/cc @kuiwang02

The bug has been updated to refer to the pull request using the external bug tracker.

In response to this:

Use a TransformFunc to generate hashes of the copied CSVs to reduced storage needs, and to minimize API access.

The following is the complete unsquashed commit listing

  • (bugfix): reduce frequency of update requests for CSVs

by adding annotations to copied CSVs that are populated with hashes of the non-status fields and the status fields.

This seems to be how this was intended to work, but was not actually working this way because the annotations never actually existed on the copied CSV. This resulted in a hot loop of update requests being made on all copied CSVs.

  • update unit tests

  • updates to test so far

  • Small changes

  • Add metadata drift guard to copyToNamespace

Since we switched to a PartialObjectMetadata cache to save memory, we lost visibility into copied CSV spec and status fields, and the reintroduced nonStatusCopyHash/statusCopyHash annotations only partially solved the problem. Manual edits to a copied CSV could still go undetected, causing drift without reconciliation.

This commit adds two new annotations: olm.operatorframework.io/observedGeneration and olm.operatorframework.io/observedResourceVersion. It implements a mechanism to guard agains metadata drift at the top of the existing-copy path in copyToNamespace. If a stored observedGeneration or observedResourceVersion no longer matches the live object, the operator now:

 • Updates the spec and hash annotations
 • Updates the status subresource
 • Records the new generation and resourceVersion in the guard annotations

Because the guard only fires when its annotations are already present, all existing unit tests pass unchanged. We preserve the memory benefits of the metadata‐only informer, avoid extra GETs, and eliminate unnecessary API churn.

Future work may explore a WithTransform informer to regain full object visibility with minimal memory impact.

  • Tests for metadata guard

Verifies that exactly three updates (spec, status, guard) are issued when the observedGeneration doesn’t match.

  • Persist observed annotations on all status updates

  • GCI the file

  • Use TransformFunc

Unit tests not updated

  • Update operatorgroup tests to compile

  • Restore operatorgroup_test from master

Remove metadatalister

  • Remove more PartialObjectMetadata

  • Remove hashes from operator_test

  • Fix error messages for static-analysis

  • Update test annotations and test client

  • Rename pruning to listerwatcher

  • Set resync to 6h

  • Add CSV copy revert syncer

  • Log tweaks

  • Consolidate revert and gc syncers

  • Add logging and reduce the amount of metadata in the TransformFunc

  • Handle the copy CSV revert via a requeue of the primary CSV

  • Revert "Set resync to 6h"

This reverts commit 855f940a2199bd4071c51f14ef44728550bf13cf.

  • Add delete handler for copied csv

  • Revert whitespace change

  • Rename function, fix comment


Upstream-repository: operator-lifecycle-manager
Upstream-commit: d055f28750cf62f966f566d36990fff5285c7a71 (cherry picked from commit bc111a9)

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.

@openshift-ci openshift-ci bot requested a review from kuiwang02 July 1, 2025 07:41
@camilamacedo86
Copy link
Contributor

/test e2e-gcp-olm

@grokspawn
Copy link
Contributor

/retest-required

1 similar comment
@tmshort
Copy link
Contributor Author

tmshort commented Jul 2, 2025

/retest-required

@tmshort
Copy link
Contributor Author

tmshort commented Jul 2, 2025

/retest-required
We seem to be consistently failing:

End-to-end: [It] Starting CatalogSource e2e tests when The namespace is labled as Pod Security Admission policy enforce:baseline when A CatalogSource built with opm v1.21.0 (<v1.23.2)is created with spec.GrpcPodConfig.SecurityContextConfig set to legacy The registry pod comes up successfully [CatalogSource] 

However, this PR doesn't do anything with CatSrc's...
Going to try one more time...

@camilamacedo86
Copy link
Contributor

/test e2e-gcp-olm

@tmshort
Copy link
Contributor Author

tmshort commented Jul 3, 2025

/retest-required

@camilamacedo86
Copy link
Contributor

/test e2e-gcp-olm

@openshift-ci-robot
Copy link

/retest-required

Remaining retests: 0 against base HEAD 4a6530a and 2 for PR HEAD 00d6504 in total

@tmshort
Copy link
Contributor Author

tmshort commented Jul 7, 2025

This keeps failing, and seems unrelated....

End-to-end: [It] Starting CatalogSource e2e tests when The namespace is labled as Pod Security Admission policy enforce:baseline when A CatalogSource built with opm v1.21.0 (<v1.23.2)is created with spec.GrpcPodConfig.SecurityContextConfig set to legacy The registry pod comes up successfully [CatalogSource] 

@openshift-ci-robot
Copy link

/retest-required

Remaining retests: 0 against base HEAD 4a6530a and 2 for PR HEAD 00d6504 in total

Copy link
Contributor

openshift-ci bot commented Jul 8, 2025

@tmshort: all tests passed!

Full PR test history. Your PR dashboard.

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 kubernetes-sigs/prow repository. I understand the commands that are listed here.

@openshift-merge-bot openshift-merge-bot bot merged commit 0e4e456 into openshift:release-4.19 Jul 8, 2025
14 checks passed
@openshift-ci-robot
Copy link

@tmshort: Jira Issue OCPBUGS-58259: All pull requests linked via external trackers have merged:

Jira Issue OCPBUGS-58259 has been moved to the MODIFIED state.

In response to this:

Use a TransformFunc to generate hashes of the copied CSVs to reduced storage needs, and to minimize API access.

The following is the complete unsquashed commit listing

  • (bugfix): reduce frequency of update requests for CSVs

by adding annotations to copied CSVs that are populated with hashes of the non-status fields and the status fields.

This seems to be how this was intended to work, but was not actually working this way because the annotations never actually existed on the copied CSV. This resulted in a hot loop of update requests being made on all copied CSVs.

  • update unit tests

  • updates to test so far

  • Small changes

  • Add metadata drift guard to copyToNamespace

Since we switched to a PartialObjectMetadata cache to save memory, we lost visibility into copied CSV spec and status fields, and the reintroduced nonStatusCopyHash/statusCopyHash annotations only partially solved the problem. Manual edits to a copied CSV could still go undetected, causing drift without reconciliation.

This commit adds two new annotations: olm.operatorframework.io/observedGeneration and olm.operatorframework.io/observedResourceVersion. It implements a mechanism to guard agains metadata drift at the top of the existing-copy path in copyToNamespace. If a stored observedGeneration or observedResourceVersion no longer matches the live object, the operator now:

 • Updates the spec and hash annotations
 • Updates the status subresource
 • Records the new generation and resourceVersion in the guard annotations

Because the guard only fires when its annotations are already present, all existing unit tests pass unchanged. We preserve the memory benefits of the metadata‐only informer, avoid extra GETs, and eliminate unnecessary API churn.

Future work may explore a WithTransform informer to regain full object visibility with minimal memory impact.

  • Tests for metadata guard

Verifies that exactly three updates (spec, status, guard) are issued when the observedGeneration doesn’t match.

  • Persist observed annotations on all status updates

  • GCI the file

  • Use TransformFunc

Unit tests not updated

  • Update operatorgroup tests to compile

  • Restore operatorgroup_test from master

Remove metadatalister

  • Remove more PartialObjectMetadata

  • Remove hashes from operator_test

  • Fix error messages for static-analysis

  • Update test annotations and test client

  • Rename pruning to listerwatcher

  • Set resync to 6h

  • Add CSV copy revert syncer

  • Log tweaks

  • Consolidate revert and gc syncers

  • Add logging and reduce the amount of metadata in the TransformFunc

  • Handle the copy CSV revert via a requeue of the primary CSV

  • Revert "Set resync to 6h"

This reverts commit 855f940a2199bd4071c51f14ef44728550bf13cf.

  • Add delete handler for copied csv

  • Revert whitespace change

  • Rename function, fix comment


Upstream-repository: operator-lifecycle-manager
Upstream-commit: d055f28750cf62f966f566d36990fff5285c7a71 (cherry picked from commit bc111a9)

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.

@tmshort tmshort deleted the OCPBUGS-58259 branch July 8, 2025 14:56
@tmshort
Copy link
Contributor Author

tmshort commented Jul 8, 2025

/cherry-pick release-4.18

@openshift-cherrypick-robot

@tmshort: new pull request created: #1034

In response to this:

/cherry-pick release-4.18

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 kubernetes-sigs/prow repository.

@openshift-bot
Copy link
Contributor

[ART PR BUILD NOTIFIER]

Distgit: operator-registry
This PR has been included in build operator-registry-container-v4.19.0-202507081507.p0.g0e4e456.assembly.stream.el9.
All builds following this will include this PR.

@openshift-bot
Copy link
Contributor

[ART PR BUILD NOTIFIER]

Distgit: ose-operator-framework-tools
This PR has been included in build ose-operator-framework-tools-container-v4.19.0-202507081507.p0.g0e4e456.assembly.stream.el9.
All builds following this will include this PR.

@openshift-bot
Copy link
Contributor

[ART PR BUILD NOTIFIER]

Distgit: operator-lifecycle-manager
This PR has been included in build operator-lifecycle-manager-container-v4.19.0-202507081507.p0.g0e4e456.assembly.stream.el9.
All builds following this will include this PR.

@openshift-merge-robot
Copy link
Contributor

Fix included in accepted release 4.19.0-0.nightly-2025-07-09-044836

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. backport-risk-assessed Indicates a PR to a release branch has been evaluated and considered safe to accept. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged. qe-approved Signifies that QE has signed off on this PR
Projects
None yet
Development

Successfully merging this pull request may close these issues.