feat(FR-2677): add DeploymentReplicasTab with replica detail Drawer#6920
Closed
agatha197 wants to merge 1 commit into
Closed
Conversation
Contributor
Author
5 tasks
Contributor
Coverage report for
|
St.❔ |
Category | Percentage | Covered / Total |
|---|---|---|---|
| 🔴 | Statements | 8.46% (-0.02% 🔻) |
1757/20780 |
| 🔴 | Branches | 7.74% (-0.03% 🔻) |
1131/14610 |
| 🔴 | Functions | 5.06% (-0.02% 🔻) |
285/5631 |
| 🔴 | Lines | 8.18% (-0.02% 🔻) |
1649/20163 |
Show new covered files 🐣
St.❔ |
File | Statements | Branches | Functions | Lines |
|---|---|---|---|---|---|
| 🔴 | ... / DeploymentReplicasTab.tsx |
0% | 0% | 0% | 0% |
Test suite run success
856 tests passing in 39 suites.
Report generated by 🧪jest coverage report action from 982ffdc
5e477e9 to
982ffdc
Compare
This was referenced Apr 22, 2026
feat(FR-1368): add deployment detail — configuration section, 4 tabs, and DeploymentDetailPage
#6917
Merged
Merged
Closed
Closed
Merged
feat(FR-1368): add deployment launcher — multi-step form, hook, page, and deploy split buttons
#6912
Closed
Contributor
Author
|
Consolidated into grouped PR stack (Foundation/Components/Launcher/List/Detail). Closing this individual PR. |
This was referenced Apr 24, 2026
8 tasks
12 tasks
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.

Resolves FR-2677.
Summary
Adds the Flow 3 Replicas tab for the Deployment detail page. Renders a paginated
BAITableofModelReplicarows (ID, health viaReplicaStatusTag, Active Pool indicator fromactivenessStatus, traffic ratio placeholder, session link, revision, createdAt). Clicking a row opens an antdDrawerwith the full replica detail — readiness / liveness / activeness statuses, session ID, revision name, endpoint URL, createdAt.Scope
react/src/components/DeploymentReplicasTab.tsx{ deploymentFrgmt: DeploymentReplicasTab_deployment$key }useRefetchableFragmentonModelDeploymentwithreplicas(orderBy, limit, offset)pagination; tab-local state (current,pageSize,order,selected) persisted vianuqsunderrCurrent/rPageSize/rOrder/rSelected.readinessStatus,activenessStatus,revision.name,networkAccess.endpointUrl) are projected from the same fragment for cache reuse.Dependencies (separate PRs)
deployment.*,replicaStatus.*) — sibling PR; diff below includes them so CI can pass standalone.ReplicaStatusTag+tsconfig.jsonstories exclude — sibling PR; diff below includes them so CI can pass standalone.Once FR-2666 and FR-2667 merge to main, this branch can be rebased and those commits will drop out cleanly.
TODO / needs-backend
TODO(needs-backend): FR-2677on thetrafficRatiocolumn —ModelReplicadoes not exposetrafficRatiotoday; that value lives on the siblingRouteobject. Wire it when the backend adds a pass-through field or when this tab adopts a parallelroutes(deploymentId: …)query.Verify
bash scripts/verify.shlocally — all checks pass (Relay, Lint, Format, TypeScript).