@@ -429,7 +429,7 @@ func verifyHypervisorPodHash(gpuNode *tfv1.GPUNode, hash string) {
429429 Eventually (func (g Gomega ) {
430430 pod := & corev1.Pod {}
431431 g .Expect (k8sClient .Get (ctx , client.ObjectKey {
432- Name : fmt .Sprintf ("hypervisor-%s" , gpuNode .Name ),
432+ Name : fmt .Sprintf ("tf- hypervisor-%s" , gpuNode .Name ),
433433 Namespace : utils .CurrentNamespace (),
434434 }, pod )).Should (Succeed ())
435435 g .Expect (pod .Labels [constants .LabelKeyPodTemplateHash ]).Should (Equal (hash ))
@@ -463,7 +463,7 @@ func verifyHypervisorPodHashConsistently(gpuNode *tfv1.GPUNode, hash string) {
463463 Consistently (func (g Gomega ) {
464464 pod := & corev1.Pod {}
465465 g .Expect (k8sClient .Get (ctx , client.ObjectKey {
466- Name : fmt .Sprintf ("hypervisor-%s" , gpuNode .Name ),
466+ Name : fmt .Sprintf ("tf- hypervisor-%s" , gpuNode .Name ),
467467 Namespace : utils .CurrentNamespace (),
468468 }, pod )).Should (Succeed ())
469469 g .Expect (pod .Labels [constants .LabelKeyPodTemplateHash ]).Should (Equal (hash ))
@@ -486,7 +486,7 @@ func verifyAllHypervisorPodHash(tfEnv *TensorFusionEnv, hash string) {
486486 for _ , gpuNode := range nodeList .Items {
487487 pod := & corev1.Pod {}
488488 g .Expect (k8sClient .Get (ctx , client.ObjectKey {
489- Name : fmt .Sprintf ("hypervisor-%s" , gpuNode .Name ),
489+ Name : fmt .Sprintf ("tf- hypervisor-%s" , gpuNode .Name ),
490490 Namespace : utils .CurrentNamespace (),
491491 }, pod )).Should (Succeed ())
492492 g .Expect (pod .Labels [constants .LabelKeyPodTemplateHash ]).Should (Equal (hash ))
@@ -552,7 +552,7 @@ func verifyAllHypervisorPodHashConsistently(tfEnv *TensorFusionEnv, hash string)
552552 for _ , gpuNode := range nodeList .Items {
553553 pod := & corev1.Pod {}
554554 g .Expect (k8sClient .Get (ctx , client.ObjectKey {
555- Name : fmt .Sprintf ("hypervisor-%s" , gpuNode .Name ),
555+ Name : fmt .Sprintf ("tf- hypervisor-%s" , gpuNode .Name ),
556556 Namespace : utils .CurrentNamespace (),
557557 }, pod )).Should (Succeed ())
558558 g .Expect (pod .Labels [constants .LabelKeyPodTemplateHash ]).Should (Equal (hash ))
0 commit comments