TESTING HELM INSTALLATION IGNORE - #350
omer-vishlitzky wants to merge 2 commits into
Conversation
…pply The kustomize overlay changes the fulfillment-database StatefulSet image reference from a :latest tag to a @sha256: digest. This triggers a StatefulSet pod recreation, killing the database mid-connection. If the grpc-server is running database migrations at that moment, golang-migrate leaves the schema_migrations table in a dirty state and all subsequent grpc-server starts refuse to run — causing a boot failure. Fix: use `kustomize edit set replicas` to set fulfillment-controller and fulfillment-grpc-server to 0 before applying the overlay. The apply itself deploys with zero replicas, eliminating the race entirely. At step [5/9], the script now: 1. Waits for TLS certificates 2. Waits for the database StatefulSet rollout to complete 3. Scales grpc-server and controller back to 1 4. Waits for all fulfillment deployment rollouts This ensures the database is healthy before any migration-running pod starts, and that grpc-server is available before rest-gateway's readiness probe checks the gRPC upstream. Depends on: openshift/release#80431 (adds kustomize binary to the installer container image). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Warning Review limit reached
More reviews will be available in 59 minutes and 53 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Repository: osac-project/coderabbit/.coderabbit.yaml Review profile: ASSERTIVE Plan: Enterprise Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: omer-vishlitzky 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 |
|
/test vmaas-e2e-full-setup-helm |
|
/test e2e-vmaas-full-setup-helm |
|
@omer-vishlitzky: The following test failed, say
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. |
|
💀 CI Triage: Root cause: The e2e-vmaas-full-setup-helm job has a 60-minute test step timeout that is insufficient for the test suite, which requires 45-60+ minutes due to slow VM provisioning and long polling intervals in the tests. Explanation: ## Root Cause Analysis The Failure PatternExit code 137 (SIGKILL) - the test process is killed by the 60-minute timeout ( The build log shows the same pattern across all failures:
Why Tests Are SlowAnalysis of the test code reveals cumulative timeout issues: Per-test overhead from fixtures:
Individual test timing estimates:
Total expected runtime: 45-60+ minutes for just these 4 slow tests, not counting the 43 other tests in the suite. The 60-minute timeout is being hit before the suite completes. Evidence This Is Broken MainDifferential analysis:
NOT a flake:
NOT infra:
NOT PR issue:
Why This StartedThe job configuration likely never had adequate timeout for the full test suite. Contributing factors:
This became visible when:
Evidence: [ [ [ [ [ [
Suggestion: Immediate fixes:
Long-term architectural fixes:
Recommended priority:
Prow job | Build For deeper investigation, use the |
This is a test PR, please ignore.