Skip to content

Commit c89ca63

Browse files
pkg: use upstream name for the kueue deployment
1 parent 4fe0b05 commit c89ca63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/operator/operatorclient/interfaces.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
const (
2424
OperatorConfigName = "cluster"
25-
OperandName = "kueue"
25+
OperandName = "kueue-controller-manager"
2626
)
2727

2828
var _ v1helpers.OperatorClient = &KueueClient{}

test/e2e/e2e_operator_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ var _ = Describe("Kueue Operator", Ordered, func() {
9898
return nil
9999
}
100100
for _, pod := range podItems.Items {
101-
if !strings.HasPrefix(pod.Name, "kueue-") {
101+
if !strings.HasPrefix(pod.Name, "kueue-controller-manager") {
102102
continue
103103
}
104104
klog.Infof("Checking pod: %v, phase: %v, deletionTS: %v\n", pod.Name, pod.Status.Phase, pod.GetDeletionTimestamp())

0 commit comments

Comments
 (0)