We annotate each replicated job in JobSet here:
|
annotateReplicatedJobWithSliceHealth(rj) |
However, after deletion/modification of the label used in e2e test, the tests still pass. Remove this line:
|
cloud.google.com/gke-tpu-slice-4x4x4-health: true |
And observe e2e tests still pass. Kueue should not return topology assignments on such nodes for these replicated jobs, which require this NodeLabel
Additional Info
Modifying the loop which creates each replicated job to add a node selector:
jt.Spec.Template.Spec.NodeSelector = map[string]string{"hello": "world"}
Results in Kueue's e2e tests failing. So, it seems that Kueue/TAS is acting upon these node selectors in some way. This makes me think that this is more likely a Slice Controller issue.
We annotate each replicated job in JobSet here:
xpk/slice/internal/webhooks/jobset_webhook.go
Line 66 in 1d2ac6b
However, after deletion/modification of the label used in e2e test, the tests still pass. Remove this line:
xpk/slice/hack/kind-cluster.yaml
Line 30 in 1d2ac6b
And observe e2e tests still pass. Kueue should not return topology assignments on such nodes for these replicated jobs, which require this NodeLabel
Additional Info
Modifying the loop which creates each replicated job to add a node selector:
Results in Kueue's e2e tests failing. So, it seems that Kueue/TAS is acting upon these node selectors in some way. This makes me think that this is more likely a Slice Controller issue.