Skip to content

Conversation

@openshift-bot
Copy link

@openshift-bot openshift-bot commented Nov 7, 2025

The downstream repository has been updated with the following following upstream commits:

Date Commit Author Message
2025-11-11 09:43:51 operator-framework/operator-controller@c8526e9 Camila Macedo (fix): Change make generate to not delete vendor files (#2320)
2025-11-11 09:38:20 operator-framework/operator-controller@936797b Predrag Knezevic 🌱 Add health probes to test-operator bundles (#2311)
2025-11-10 16:09:33 operator-framework/operator-controller@b634dac dependabot[bot] 🌱 Bump golang.org/x/sync from 0.17.0 to 0.18.0 (#2317)
2025-11-10 14:13:16 operator-framework/operator-controller@0268fae Todd Short ✨ Add e2e profiling toolchain for heap and CPU analysis (#2298)
2025-11-10 14:07:51 operator-framework/operator-controller@d4e93be Camila Macedo fix: improve boxcutter logging levels (#2314)
2025-11-07 01:25:17 operator-framework/operator-controller@b3f85d5 Todd Short Revert "Upgrade compatible bingo binaries ( kind/kustomize/opm/envtest ) (#2306)" (#2312)
2025-11-06 16:31:13 operator-framework/operator-controller@9530175 dependabot[bot] 🌱 Bump github.com/containerd/containerd from 1.7.28 to 1.7.29 (#2310)
2025-11-06 01:41:19 operator-framework/operator-controller@05ee601 Todd Short 📊 Calibrate Prometheus alert thresholds using memory profiling data (#2308)

The vendor/ directory has been updated and the following commits were carried:

Date Commit Author Message
2025-11-05 15:03:47 openshift/operator-framework-operator-controller@596608c dtfranz UPSTREAM: <carry>: Add OpenShift specific files
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@8782110 Camila Macedo UPSTREAM: <carry>: Add new tests for single/own namespaces install modes
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@e964249 Camila Macedo UPSTREAM: <carry>: Upgrade OCP image from 4.20 to 4.21
2025-11-05 15:03:50 openshift/operator-framework-operator-controller@4eaf694 Camila Macedo UPSTREAM: <carry>: [Default Catalog Tests] - Change logic to get ocp images from openshift/catalogd/manifests.yaml
2025-11-05 15:03:51 openshift/operator-framework-operator-controller@d92579c Todd Short UPSTREAM: <carry>: Update OCP catalogs to v4.21
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@05c715e Kui Wang UPSTREAM: <carry>: support singleown cases in disconnected
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@34f08ed Kui Wang UPSTREAM: <carry>: fix cases 81696 and 74618 for product code changes
2025-11-05 15:03:53 openshift/operator-framework-operator-controller@e7f4764 Camila Macedo UPSTREAM: <carry>: Define Default timeouts and apply their usage accross to avoid flakes
2025-11-05 15:03:54 openshift/operator-framework-operator-controller@046b856 Todd Short UPSTREAM: <carry>: Update to new feature-gate options in helm
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@199c93e Camila Macedo UPSTREAM: <carry>: Fix flake for single/own ns tests by ensuring uniquess and waiting for k8s cleanups
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@a83a6af Camila Macedo UPSTREAM: <carry>: [OTE]: Enhance single/own ns based on review comments ( Follow-Up of: 714977c )
2025-11-05 15:04:39 openshift/operator-framework-operator-controller@f5aab1b Kui Wang UPSTREAM: <carry>: Update OwnSingle template to use spec.config.inline.watchNamespace
2025-11-04 22:57:22 openshift/operator-framework-operator-controller@93b01c6 Camila Macedo UPSTREAM: <carry>: [OTE]: Add webhook cleanup validation on extension uninstall
2025-11-07 16:10:51 openshift/operator-framework-operator-controller@f1dd891 Kui Wang UPSTREAM: <carry>: Add [OTP] to migrated cases
2025-11-08 09:15:26 openshift/operator-framework-operator-controller@ad0222c Camila Macedo UPSTREAM: <carry>: [OTE]: Upgrade dependencies used
2025-11-10 19:00:13 openshift/operator-framework-operator-controller@9498b0a Camila Macedo UPSTREAM: <carry>: fix(OTE): fix OpenShift Kubernetes replace version format

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/cc @openshift/openshift-team-operator-framework

tmshort and others added 3 commits November 6, 2025 01:41
…#2308)

Analyze baseline memory usage patterns and adjust Prometheus alert thresholds
to eliminate false positives while maintaining sensitivity to real issues.

This is based on memory profiling done against BoxcutterRuntime, which has
increased memory load.

**Memory Analysis:**
- Peak RSS: 107.9MB, Peak Heap: 54.74MB during e2e tests
- Memory stabilizes at 106K heap (heap19-21 show 0K growth for 3 snapshots)
- Conclusion: NOT a memory leak, but normal operational behavior

**Memory Breakdown:**
- JSON Deserialization: 24.64MB (45%) - inherent to OLM's dynamic nature
- Informer Lists: 9.87MB (18%) - optimization possible via field selectors
- OpenAPI Schemas: 3.54MB (6%) - already optimized (73% reduction)
- Runtime Overhead: 53.16MB (49%) - normal for Go applications

**Alert Threshold Updates:**
- operator-controller-memory-growth: 100kB/sec → 200kB/sec
- operator-controller-memory-usage: 100MB → 150MB
- catalogd-memory-growth: 100kB/sec → 200kB/sec

**Rationale:**
Baseline profiling showed 132.4kB/sec episodic growth during informer sync
and 107.9MB peak usage are normal. Previous thresholds caused false positive
alerts during normal e2e test execution.

**Verification:**
- Baseline test (old thresholds): 2 alerts triggered (false positives)
- Verification test (new thresholds): 0 alerts triggered ✅
- Memory patterns remain consistent (~55MB heap, 79-171MB RSS)
- Transient spikes don't trigger alerts due to "for: 5m" clause

**Recommendation:**
Accept 107.9MB as normal operational behavior for test/development
environments. Production deployments may need different thresholds based
on workload characteristics (number of resources, reconciliation frequency).

**Non-viable Optimizations:**
- Cannot replace unstructured with typed clients (breaks OLM flexibility)
- Cannot reduce runtime overhead (inherent to Go)
- JSON deserialization is unavoidable for dynamic resource handling

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Signed-off-by: Todd Short <[email protected]>
Co-authored-by: Claude <[email protected]>
Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.7.28 to 1.7.29.
- [Release notes](https://github.com/containerd/containerd/releases)
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
- [Commits](containerd/containerd@v1.7.28...v1.7.29)

---
updated-dependencies:
- dependency-name: github.com/containerd/containerd
  dependency-version: 1.7.29
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@openshift-bot openshift-bot added tide/merge-method-merge Denotes a PR that should use a standard merge by tide when it merges. kind/sync labels Nov 7, 2025
@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Nov 7, 2025
@openshift-ci-robot
Copy link

@openshift-bot: This pull request explicitly references no jira issue.

In response to this:

The downstream repository has been updated with the following following upstream commits:

Date Commit Author Message
2025-11-07 01:25:17 operator-framework/operator-controller@b3f85d5 Todd Short Revert "Upgrade compatible bingo binaries ( kind/kustomize/opm/envtest ) (#2306)" (#2312)
2025-11-06 16:31:13 operator-framework/operator-controller@9530175 dependabot[bot] 🌱 Bump github.com/containerd/containerd from 1.7.28 to 1.7.29 (#2310)
2025-11-06 01:41:19 operator-framework/operator-controller@05ee601 Todd Short 📊 Calibrate Prometheus alert thresholds using memory profiling data (#2308)

The vendor/ directory has been updated and the following commits were carried:

Date Commit Author Message
2025-11-05 15:03:47 openshift/operator-framework-operator-controller@596608c dtfranz UPSTREAM: <carry>: Add OpenShift specific files
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@8782110 Camila Macedo UPSTREAM: <carry>: Add new tests for single/own namespaces install modes
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@e964249 Camila Macedo UPSTREAM: <carry>: Upgrade OCP image from 4.20 to 4.21
2025-11-05 15:03:50 openshift/operator-framework-operator-controller@4eaf694 Camila Macedo UPSTREAM: <carry>: [Default Catalog Tests] - Change logic to get ocp images from openshift/catalogd/manifests.yaml
2025-11-05 15:03:51 openshift/operator-framework-operator-controller@d92579c Todd Short UPSTREAM: <carry>: Update OCP catalogs to v4.21
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@05c715e Kui Wang UPSTREAM: <carry>: support singleown cases in disconnected
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@34f08ed Kui Wang UPSTREAM: <carry>: fix cases 81696 and 74618 for product code changes
2025-11-05 15:03:53 openshift/operator-framework-operator-controller@e7f4764 Camila Macedo UPSTREAM: <carry>: Define Default timeouts and apply their usage accross to avoid flakes
2025-11-05 15:03:54 openshift/operator-framework-operator-controller@046b856 Todd Short UPSTREAM: <carry>: Update to new feature-gate options in helm
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@199c93e Camila Macedo UPSTREAM: <carry>: Fix flake for single/own ns tests by ensuring uniquess and waiting for k8s cleanups
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@a83a6af Camila Macedo UPSTREAM: <carry>: [OTE]: Enhance single/own ns based on review comments ( Follow-Up of: 714977c )
2025-11-05 15:04:39 openshift/operator-framework-operator-controller@f5aab1b Kui Wang UPSTREAM: <carry>: Update OwnSingle template to use spec.config.inline.watchNamespace
2025-11-04 22:57:22 openshift/operator-framework-operator-controller@93b01c6 Camila Macedo UPSTREAM: <carry>: [OTE]: Add webhook cleanup validation on extension uninstall

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/cc @openshift/openshift-team-operator-framework

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-bot openshift-bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Nov 7, 2025
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Nov 7, 2025

@openshift-bot: GitHub didn't allow me to request PR reviews from the following users: openshift/openshift-team-operator-framework.

Note that only openshift members and repo collaborators can review this PR, and authors cannot review their own PRs.

In response to this:

The downstream repository has been updated with the following following upstream commits:

Date Commit Author Message
2025-11-07 01:25:17 operator-framework/operator-controller@b3f85d5 Todd Short Revert "Upgrade compatible bingo binaries ( kind/kustomize/opm/envtest ) (#2306)" (#2312)
2025-11-06 16:31:13 operator-framework/operator-controller@9530175 dependabot[bot] 🌱 Bump github.com/containerd/containerd from 1.7.28 to 1.7.29 (#2310)
2025-11-06 01:41:19 operator-framework/operator-controller@05ee601 Todd Short 📊 Calibrate Prometheus alert thresholds using memory profiling data (#2308)

The vendor/ directory has been updated and the following commits were carried:

Date Commit Author Message
2025-11-05 15:03:47 openshift/operator-framework-operator-controller@596608c dtfranz UPSTREAM: <carry>: Add OpenShift specific files
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@8782110 Camila Macedo UPSTREAM: <carry>: Add new tests for single/own namespaces install modes
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@e964249 Camila Macedo UPSTREAM: <carry>: Upgrade OCP image from 4.20 to 4.21
2025-11-05 15:03:50 openshift/operator-framework-operator-controller@4eaf694 Camila Macedo UPSTREAM: <carry>: [Default Catalog Tests] - Change logic to get ocp images from openshift/catalogd/manifests.yaml
2025-11-05 15:03:51 openshift/operator-framework-operator-controller@d92579c Todd Short UPSTREAM: <carry>: Update OCP catalogs to v4.21
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@05c715e Kui Wang UPSTREAM: <carry>: support singleown cases in disconnected
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@34f08ed Kui Wang UPSTREAM: <carry>: fix cases 81696 and 74618 for product code changes
2025-11-05 15:03:53 openshift/operator-framework-operator-controller@e7f4764 Camila Macedo UPSTREAM: <carry>: Define Default timeouts and apply their usage accross to avoid flakes
2025-11-05 15:03:54 openshift/operator-framework-operator-controller@046b856 Todd Short UPSTREAM: <carry>: Update to new feature-gate options in helm
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@199c93e Camila Macedo UPSTREAM: <carry>: Fix flake for single/own ns tests by ensuring uniquess and waiting for k8s cleanups
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@a83a6af Camila Macedo UPSTREAM: <carry>: [OTE]: Enhance single/own ns based on review comments ( Follow-Up of: 714977c )
2025-11-05 15:04:39 openshift/operator-framework-operator-controller@f5aab1b Kui Wang UPSTREAM: <carry>: Update OwnSingle template to use spec.config.inline.watchNamespace
2025-11-04 22:57:22 openshift/operator-framework-operator-controller@93b01c6 Camila Macedo UPSTREAM: <carry>: [OTE]: Add webhook cleanup validation on extension uninstall

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/cc @openshift/openshift-team-operator-framework

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 openshift-bot added the lgtm Indicates that a PR is ready to be merged. label Nov 7, 2025
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Nov 10, 2025
@jianzhangbjz
Copy link
Member

/verified bypass

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Nov 10, 2025
@openshift-ci-robot
Copy link

@jianzhangbjz: The verified label has been added.

In response to this:

/verified bypass

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.

camilamacedo86 and others added 2 commits November 10, 2025 14:07
- Use Error level for all error conditions (validation, collision, engine failures)
- Move verbose success reports to V(1) debug mode
- Include full diagnostic reports when errors occur

Co-authored-by: Todd Short <[email protected]>
Introduces automated memory and CPU profiling for e2e tests with:
- Automatic port-forwarding to Kubernetes deployment pprof endpoints
- Configurable periodic heap and CPU profile collection with differential timing
- Analysis report generation with growth metrics and top allocators
- Makefile targets: start-profiling, stop-profiling, analyze-profiles

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Signed-off-by: Todd Short <[email protected]>
Co-authored-by: Claude <[email protected]>
@tmshort
Copy link
Contributor

tmshort commented Nov 10, 2025

/close
This is dangerous to merge since it doesn't include #547 the auto-bumper-on-merge is failing.

@openshift-ci openshift-ci bot closed this Nov 10, 2025
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Nov 10, 2025

@tmshort: Closed this PR.

In response to this:

/close
This is dangerous to merge since it doesn't include #547 the auto-bumper-on-merge is failing.

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.

@tmshort
Copy link
Contributor

tmshort commented Nov 10, 2025

/repoen
My mistake, #547 was already included.

@tmshort
Copy link
Contributor

tmshort commented Nov 10, 2025

/reopen

@openshift-ci openshift-ci bot reopened this Nov 10, 2025
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Nov 10, 2025

@tmshort: Reopened this PR.

In response to this:

/reopen

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-ci-robot
Copy link

@openshift-bot: This pull request explicitly references no jira issue.

In response to this:

The downstream repository has been updated with the following following upstream commits:

Date Commit Author Message
2025-11-07 01:25:17 operator-framework/operator-controller@b3f85d5 Todd Short Revert "Upgrade compatible bingo binaries ( kind/kustomize/opm/envtest ) (#2306)" (#2312)
2025-11-06 16:31:13 operator-framework/operator-controller@9530175 dependabot[bot] 🌱 Bump github.com/containerd/containerd from 1.7.28 to 1.7.29 (#2310)
2025-11-06 01:41:19 operator-framework/operator-controller@05ee601 Todd Short 📊 Calibrate Prometheus alert thresholds using memory profiling data (#2308)

The vendor/ directory has been updated and the following commits were carried:

Date Commit Author Message
2025-11-05 15:03:47 openshift/operator-framework-operator-controller@596608c dtfranz UPSTREAM: <carry>: Add OpenShift specific files
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@8782110 Camila Macedo UPSTREAM: <carry>: Add new tests for single/own namespaces install modes
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@e964249 Camila Macedo UPSTREAM: <carry>: Upgrade OCP image from 4.20 to 4.21
2025-11-05 15:03:50 openshift/operator-framework-operator-controller@4eaf694 Camila Macedo UPSTREAM: <carry>: [Default Catalog Tests] - Change logic to get ocp images from openshift/catalogd/manifests.yaml
2025-11-05 15:03:51 openshift/operator-framework-operator-controller@d92579c Todd Short UPSTREAM: <carry>: Update OCP catalogs to v4.21
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@05c715e Kui Wang UPSTREAM: <carry>: support singleown cases in disconnected
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@34f08ed Kui Wang UPSTREAM: <carry>: fix cases 81696 and 74618 for product code changes
2025-11-05 15:03:53 openshift/operator-framework-operator-controller@e7f4764 Camila Macedo UPSTREAM: <carry>: Define Default timeouts and apply their usage accross to avoid flakes
2025-11-05 15:03:54 openshift/operator-framework-operator-controller@046b856 Todd Short UPSTREAM: <carry>: Update to new feature-gate options in helm
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@199c93e Camila Macedo UPSTREAM: <carry>: Fix flake for single/own ns tests by ensuring uniquess and waiting for k8s cleanups
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@a83a6af Camila Macedo UPSTREAM: <carry>: [OTE]: Enhance single/own ns based on review comments ( Follow-Up of: 714977c )
2025-11-05 15:04:39 openshift/operator-framework-operator-controller@f5aab1b Kui Wang UPSTREAM: <carry>: Update OwnSingle template to use spec.config.inline.watchNamespace
2025-11-04 22:57:22 openshift/operator-framework-operator-controller@93b01c6 Camila Macedo UPSTREAM: <carry>: [OTE]: Add webhook cleanup validation on extension uninstall
2025-11-07 16:10:51 openshift/operator-framework-operator-controller@f1dd891 Kui Wang UPSTREAM: <carry>: Add [OTP] to migrated cases

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/cc @openshift/openshift-team-operator-framework

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

tmshort commented Nov 10, 2025

/lgtm

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

tmshort commented Nov 10, 2025

My mistake, it seems to be missing #544

@tmshort
Copy link
Contributor

tmshort commented Nov 10, 2025

/hold due to missing #544

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

openshift-ci bot commented Nov 11, 2025

New changes are detected. LGTM label has been removed.

@openshift-bot openshift-bot added the lgtm Indicates that a PR is ready to be merged. label Nov 11, 2025
@camilamacedo86
Copy link
Contributor

/hold cancel

/lgtm
/approved

@tmshort now we can move forward :-)

@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 Nov 11, 2025
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Nov 11, 2025

@openshift-bot: 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.

@tmshort
Copy link
Contributor

tmshort commented Nov 11, 2025

Now, we just need this verified...

@bandrade
Copy link

/label qe-approved
/verified by @bandrade

@openshift-ci openshift-ci bot added the qe-approved Signifies that QE has signed off on this PR label Nov 11, 2025
@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Nov 11, 2025
@openshift-ci-robot
Copy link

@bandrade: This PR has been marked as verified by @bandrade.

In response to this:

/label qe-approved
/verified by @bandrade

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-merge-bot openshift-merge-bot bot merged commit 402cfc5 into openshift:main Nov 11, 2025
12 checks passed
@camilamacedo86
Copy link
Contributor

/retitle: OCPBUGS-62964: Synchronize From Upstream Repositories

@openshift-ci openshift-ci bot changed the title NO-ISSUE: Synchronize From Upstream Repositories : OCPBUGS-62964: Synchronize From Upstream Repositories Nov 13, 2025
@openshift-ci-robot
Copy link

@openshift-bot: Jira Issue OCPBUGS-62964 is in an unrecognized state (ON_QA) and will not be moved to the MODIFIED state.

In response to this:

The downstream repository has been updated with the following following upstream commits:

Date Commit Author Message
2025-11-11 09:43:51 operator-framework/operator-controller@c8526e9 Camila Macedo (fix): Change make generate to not delete vendor files (#2320)
2025-11-11 09:38:20 operator-framework/operator-controller@936797b Predrag Knezevic 🌱 Add health probes to test-operator bundles (#2311)
2025-11-10 16:09:33 operator-framework/operator-controller@b634dac dependabot[bot] 🌱 Bump golang.org/x/sync from 0.17.0 to 0.18.0 (#2317)
2025-11-10 14:13:16 operator-framework/operator-controller@0268fae Todd Short ✨ Add e2e profiling toolchain for heap and CPU analysis (#2298)
2025-11-10 14:07:51 operator-framework/operator-controller@d4e93be Camila Macedo fix: improve boxcutter logging levels (#2314)
2025-11-07 01:25:17 operator-framework/operator-controller@b3f85d5 Todd Short Revert "Upgrade compatible bingo binaries ( kind/kustomize/opm/envtest ) (#2306)" (#2312)
2025-11-06 16:31:13 operator-framework/operator-controller@9530175 dependabot[bot] 🌱 Bump github.com/containerd/containerd from 1.7.28 to 1.7.29 (#2310)
2025-11-06 01:41:19 operator-framework/operator-controller@05ee601 Todd Short 📊 Calibrate Prometheus alert thresholds using memory profiling data (#2308)

The vendor/ directory has been updated and the following commits were carried:

Date Commit Author Message
2025-11-05 15:03:47 openshift/operator-framework-operator-controller@596608c dtfranz UPSTREAM: <carry>: Add OpenShift specific files
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@8782110 Camila Macedo UPSTREAM: <carry>: Add new tests for single/own namespaces install modes
2025-11-05 15:03:49 openshift/operator-framework-operator-controller@e964249 Camila Macedo UPSTREAM: <carry>: Upgrade OCP image from 4.20 to 4.21
2025-11-05 15:03:50 openshift/operator-framework-operator-controller@4eaf694 Camila Macedo UPSTREAM: <carry>: [Default Catalog Tests] - Change logic to get ocp images from openshift/catalogd/manifests.yaml
2025-11-05 15:03:51 openshift/operator-framework-operator-controller@d92579c Todd Short UPSTREAM: <carry>: Update OCP catalogs to v4.21
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@05c715e Kui Wang UPSTREAM: <carry>: support singleown cases in disconnected
2025-11-05 15:03:52 openshift/operator-framework-operator-controller@34f08ed Kui Wang UPSTREAM: <carry>: fix cases 81696 and 74618 for product code changes
2025-11-05 15:03:53 openshift/operator-framework-operator-controller@e7f4764 Camila Macedo UPSTREAM: <carry>: Define Default timeouts and apply their usage accross to avoid flakes
2025-11-05 15:03:54 openshift/operator-framework-operator-controller@046b856 Todd Short UPSTREAM: <carry>: Update to new feature-gate options in helm
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@199c93e Camila Macedo UPSTREAM: <carry>: Fix flake for single/own ns tests by ensuring uniquess and waiting for k8s cleanups
2025-11-05 15:03:55 openshift/operator-framework-operator-controller@a83a6af Camila Macedo UPSTREAM: <carry>: [OTE]: Enhance single/own ns based on review comments ( Follow-Up of: 714977c )
2025-11-05 15:04:39 openshift/operator-framework-operator-controller@f5aab1b Kui Wang UPSTREAM: <carry>: Update OwnSingle template to use spec.config.inline.watchNamespace
2025-11-04 22:57:22 openshift/operator-framework-operator-controller@93b01c6 Camila Macedo UPSTREAM: <carry>: [OTE]: Add webhook cleanup validation on extension uninstall
2025-11-07 16:10:51 openshift/operator-framework-operator-controller@f1dd891 Kui Wang UPSTREAM: <carry>: Add [OTP] to migrated cases
2025-11-08 09:15:26 openshift/operator-framework-operator-controller@ad0222c Camila Macedo UPSTREAM: <carry>: [OTE]: Upgrade dependencies used
2025-11-10 19:00:13 openshift/operator-framework-operator-controller@9498b0a Camila Macedo UPSTREAM: <carry>: fix(OTE): fix OpenShift Kubernetes replace version format

This pull request is expected to merge without any human intervention. If tests are failing here, changes must land upstream to fix any issues so that future downstreaming efforts succeed.

/cc @openshift/openshift-team-operator-framework

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.

@camilamacedo86
Copy link
Contributor

/retitle OCPBUGS-62964: Synchronize From Upstream Repositories

@openshift-ci openshift-ci bot changed the title : OCPBUGS-62964: Synchronize From Upstream Repositories OCPBUGS-62964: Synchronize From Upstream Repositories Nov 13, 2025
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. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. kind/sync lgtm Indicates that a PR is ready to be merged. qe-approved Signifies that QE has signed off on this PR tide/merge-method-merge Denotes a PR that should use a standard merge by tide when it merges. verified Signifies that the PR passed pre-merge verification criteria

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants