Increase pagerduty-operator lint memory limit to 6Gi#79850
Conversation
golangci-lint OOMs at 4Gi with FIPS/boringcrypto builds after recent dependency updates expanded the module graph. Failed 3 consecutive times on PR openshift#434 with exit code 137 (OOMKilled). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
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)
WalkthroughThis PR updates the OpenShift CI configuration for the PagerDuty operator to add resource limits for the ChangesLint Job Resource Limits
Possibly Related PRs
Suggested Labels
Suggested Reviewers
Estimated Code Review Effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
[REHEARSALNOTIFIER]
Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals. Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
|
@clcollins: 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. |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: clcollins, nephomaniac 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 |
Summary
Evidence
Test plan
🤖 Generated with Claude Code
Summary by CodeRabbit
This PR increases the memory limit for the pagerduty-operator's
lintjob in the OpenShift CI configuration from the default 4Gi to 6Gi. The change addresses recurring out-of-memory failures in the golangci-lint step during FIPS/boringcrypto builds, which were caused by expanded dependencies in the module graph following recent updates.What changed:
ci-operator/config/openshift/pagerduty-operator/openshift-pagerduty-operator-master.yamlto add explicit resource limits for thelintjob (memory: 6Gi), overriding the default 4Gi limit set for all other jobs ('*'). Request values remain unchanged atcpu: 100mandmemory: 200Mi.Impact:
This is a targeted infrastructure change that enables the pagerduty-operator CI pipeline to complete successfully, preventing the lint container from being OOMKilled before validation completes.