fix(catalog): close workload state gaps found by e2e recording - #283
Draft
AviadHayumi wants to merge 1 commit into
Draft
fix(catalog): close workload state gaps found by e2e recording#283AviadHayumi wants to merge 1 commit into
AviadHayumi wants to merge 1 commit into
Conversation
Fourteen states operators actually write that the built-in definitions read as Undefined, found by driving real workloads on live clusters and classifying every observed CR from its own fields: - batch Job: Completed misses SuccessCriteriaMet; Failed misses FailureTarget - Deployment: just-created (Progressing before Available exists) - StatefulSet: scale-down (ready above spec.replicas) - JobSet: just-created and succeeded-pending windows; ready-flap in Running - LeaderWorkerSet: startup before Available exists; scale-down replica lag (Running now keys on Available=True, the reason field is never extracted) - RayCluster: no Initializing at all (provisioning and resume windows) - RayJob: provisioning before jobStatus exists; the Suspending transient - Knative Service: only Running was mapped; deploying and failed now read - KServe InferenceService: the whole deploy phase before Ready is decided - Milvus, DynamoGraphDeployment: the just-created empty phase - NIMService: every non-terminal phase (empty, PVC-Created, ...) Each fix was re-recorded on a live cluster and the replay golden asserts every recorded frame through Karta. The full report with exact CR statuses and kread reproductions is test/e2e/KARTA_GAPS.md on the e2e branch. Signed-off-by: aviadh <aviad.hayumi@gmail.com>
AviadHayumi
force-pushed
the
e2e/catalog-gaps
branch
from
August 25, 2026 11:55
eb2970c to
675be85
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of the e2e flow recording stack. Reordered so flows independent of the catalog fix (#262) come before it.