-
Notifications
You must be signed in to change notification settings - Fork 42
test: remaining topology e2e tests #383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Ronkahn21
merged 27 commits into
ai-dynamo:main
from
Ronkahn21:test/import-remaining-topology-tests
Feb 8, 2026
Merged
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
4f3d91a
test: import remaining topology e2e tests (TAS8-TAS16)
Ronkahn21 92d9b79
Update operator/e2e/yaml/tas-large-scale.yaml
Ronkahn21 147184f
fix: remove packDomain constraint from topology configuration
Ronkahn21 1091928
refactor: use loop for TAS16 PCS replicas verification
Ronkahn21 f7ed72a
refactor: replace name generation functions with utils for expected s…
Ronkahn21 df9c73c
refactor: eliminate replica duplication across TAS tests
Ronkahn21 01cf2d6
refactor: simplify expected subgroups creation in topology tests
Ronkahn21 ba26cdf
refactor: update logging messages and unify PodGroup topology verific…
Ronkahn21 c05cb57
refactor: apply DRY principles to topology tests
Ronkahn21 f02e7df
test: address PR feedback on topology tests
Ronkahn21 861493f
test: use lightweight busybox image for TAS tests
Ronkahn21 97b7154
test: add lightweight busybox container for test pods
Ronkahn21 1673428
test: remove merge conflict markers and clean up dependencies.yaml
Ronkahn21 b2218b5
test: add scaled PodGang verification to TAS10 and TAS15
Ronkahn21 5e6e3bb
fix: add missing testing package import to kai_topology
Ronkahn21 4a90877
fix: correct scaled PodGroup constraint logic
Ronkahn21 f84dca9
test: remove CPU requirements from TAS test YAMLs
Ronkahn21 7ffb877
test: add pod anti-affinity to 3 representative TAS YAMLs
Ronkahn21 6064fe3
test: add pod anti-affinity to remaining TAS YAMLs
Ronkahn21 7b7fb06
test: use CPU requests instead of pod anti-affinity
Ronkahn21 951edd5
test: increase CPU requests to 1000m in TAS YAMLs
Ronkahn21 781f83b
test: reduce CPU requests from 1000m to 400m in TAS YAMLs
Ronkahn21 745b2e6
test: use memory limits instead of CPU for pod density
Ronkahn21 7d3c834
test: reduce memory requests from 51m to 40m
Ronkahn21 fad0d38
test: fix memory unit from 40m to 40Mi
Ronkahn21 260500c
test: fix PR review issues from gflarity
Ronkahn21 3f2fa4a
test: remove pod anti-affinity and use 40Mi in tas-pcsg-scale
Ronkahn21 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| # Workload 8: SP-1 - Full 3-Level Hierarchy with Cascading Constraints | ||
| # Test scenario: PCS (block) → PCSG (rack) → PCLQ (host) - demonstrating constraint inheritance | ||
| --- | ||
| apiVersion: grove.io/v1alpha1 | ||
| kind: PodCliqueSet | ||
| metadata: | ||
| name: tas-hierarchy | ||
| labels: | ||
| app: tas-hierarchy | ||
| spec: | ||
| replicas: 1 | ||
| template: | ||
| topologyConstraint: | ||
| packDomain: block # PCS level - broadest | ||
| podCliqueScalingGroups: | ||
| - name: inference-group | ||
| replicas: 2 | ||
| minAvailable: 2 | ||
| topologyConstraint: | ||
| packDomain: rack # PCSG level - stricter than parent | ||
| cliqueNames: | ||
| - prefill | ||
| - decode | ||
| cliques: | ||
| - name: prefill | ||
| labels: | ||
| kai.scheduler/queue: test | ||
| topologyConstraint: | ||
| packDomain: host # PCLQ level - strictest | ||
| spec: | ||
| roleName: prefill | ||
| replicas: 2 | ||
| minAvailable: 2 | ||
| podSpec: | ||
| schedulerName: kai-scheduler | ||
| affinity: | ||
| nodeAffinity: | ||
| requiredDuringSchedulingIgnoredDuringExecution: | ||
| nodeSelectorTerms: | ||
| - matchExpressions: | ||
| - key: node_role.e2e.grove.nvidia.com | ||
| operator: In | ||
| values: | ||
| - agent | ||
| tolerations: | ||
| - key: node_role.e2e.grove.nvidia.com | ||
| operator: Equal | ||
| value: agent | ||
| effect: NoSchedule | ||
| containers: | ||
| - name: prefill | ||
| image: registry:5001/busybox:latest | ||
| command: ["sleep", "infinity"] | ||
| resources: | ||
| requests: | ||
| memory: 40Mi | ||
| - name: decode | ||
| labels: | ||
| kai.scheduler/queue: test | ||
| topologyConstraint: | ||
| packDomain: host # PCLQ level - strictest | ||
| spec: | ||
| roleName: decode | ||
| replicas: 2 | ||
| minAvailable: 2 | ||
| podSpec: | ||
| schedulerName: kai-scheduler | ||
| affinity: | ||
| nodeAffinity: | ||
| requiredDuringSchedulingIgnoredDuringExecution: | ||
| nodeSelectorTerms: | ||
| - matchExpressions: | ||
| - key: node_role.e2e.grove.nvidia.com | ||
| operator: In | ||
| values: | ||
| - agent | ||
| tolerations: | ||
| - key: node_role.e2e.grove.nvidia.com | ||
| operator: Equal | ||
| value: agent | ||
| effect: NoSchedule | ||
| containers: | ||
| - name: decode | ||
| image: registry:5001/busybox:latest | ||
| command: ["sleep", "infinity"] | ||
| resources: | ||
| requests: | ||
| memory: 40Mi |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.