Fix Spectrum-X deployment reconciliation and rail names - #225
Merged
Conversation
Greptile SummaryThe PR corrects Spectrum-X rail identifiers and adds bounded retry handling for transient NIC interface-name mismatches.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Poll NicInterfaceNameTemplate] --> B{Validation state}
B -->|InterfaceNameMismatch retryable error| C[Start five-minute timer]
C --> A
B -->|Ordinary in-progress| D[Stop mismatch timer]
D --> A
B -->|Success| E[Continue deployment verification]
B -->|Non-retryable error| F[Fail deployment]
C -->|Timer expires| F
Reviews (3): Last reviewed commit: "Reset interface mismatch timer after rec..." | Re-trigger Greptile |
Treat InterfaceNameMismatch as retryable and bound interface template reconciliation to five minutes. This lets udev renames settle while keeping later manifest verification gated. Signed-off-by: Alexander Maslennikov <amaslennikov@nvidia.com>
Use v1alpha2 railTopology names for NAD annotations, device-plugin requests, and DRA selectors in RA2.2 and RA2.3 workloads. Preserve the explicit legacy naming used by the RA2.1 profile. Signed-off-by: Alexander Maslennikov <amaslennikov@nvidia.com>
Keep InterfaceNameMismatch terminal for one-shot validation and mark it retryable for deploy. Start the five-minute window only after deploy observes that retryable mismatch, leaving normal initialization unbounded. Signed-off-by: Alexander Maslennikov <amaslennikov@nvidia.com>
almaslennikov
force-pushed
the
dev/fix-spectrum-x-deployment
branch
from
August 18, 2026 11:48
09a3259 to
d54782c
Compare
Stop the local retry timer when a retryable interface-name mismatch clears and reconciliation returns to an ordinary in-progress state. Add a transition test that verifies the deploy-wide context resumes control. Signed-off-by: Alexander Maslennikov <amaslennikov@nvidia.com>
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.
Summary
Validation