Skip to content

Commit 29924f1

Browse files
committed
Enable feature in CI and remove requeue on delete
Signed-off-by: Ryan O'Leary <[email protected]>
1 parent 9afd259 commit 29924f1

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

ray-operator/config/overlays/test-overrides/deployment-override.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ spec:
99
containers:
1010
- name: kuberay-operator
1111
args:
12-
- --feature-gates=RayClusterStatusConditions=true,RayJobDeletionPolicy=true
12+
- --feature-gates=RayClusterStatusConditions=true,RayJobDeletionPolicy=true,RayMultiHostIndexing=true

ray-operator/controllers/ray/raycluster_controller.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -866,9 +866,6 @@ func (r *RayClusterReconciler) reconcileMultiHostWorkerGroup(ctx context.Context
866866
}
867867
}
868868
}
869-
if len(deletedPods) > 0 {
870-
return fmt.Errorf("deleted %d unhealthy worker Pods in multi-host groups, requeueing", len(deletedPods))
871-
}
872869

873870
// 4. Handle explicit deletions from the autoscaler.
874871
if len(worker.ScaleStrategy.WorkersToDelete) > 0 {

0 commit comments

Comments
 (0)