-
Notifications
You must be signed in to change notification settings - Fork 767
Expand file tree
/
Copy pathraycluster_controller.go
More file actions
2030 lines (1818 loc) · 90 KB
/
raycluster_controller.go
File metadata and controls
2030 lines (1818 loc) · 90 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package ray
import (
"context"
"crypto/rand"
"encoding/base64"
errstd "errors"
"fmt"
"maps"
"os"
"reflect"
"runtime"
"strconv"
"strings"
"time"
"github.com/go-logr/logr"
routev1 "github.com/openshift/api/route/v1"
batchv1 "k8s.io/api/batch/v1"
corev1 "k8s.io/api/core/v1"
networkingv1 "k8s.io/api/networking/v1"
rbacv1 "k8s.io/api/rbac/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
k8sruntime "k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/tools/record"
"k8s.io/utils/ptr"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/builder"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
rayv1 "github.com/ray-project/kuberay/ray-operator/apis/ray/v1"
"github.com/ray-project/kuberay/ray-operator/controllers/ray/batchscheduler"
"github.com/ray-project/kuberay/ray-operator/controllers/ray/common"
"github.com/ray-project/kuberay/ray-operator/controllers/ray/expectations"
"github.com/ray-project/kuberay/ray-operator/controllers/ray/metrics"
"github.com/ray-project/kuberay/ray-operator/controllers/ray/utils"
"github.com/ray-project/kuberay/ray-operator/pkg/features"
)
type reconcileFunc func(context.Context, *rayv1.RayCluster) error
var DefaultRequeueDuration = 2 * time.Second
// NewReconciler returns a new reconcile.Reconciler
func NewReconciler(mgr manager.Manager, options RayClusterReconcilerOptions) *RayClusterReconciler {
return &RayClusterReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
Recorder: mgr.GetEventRecorderFor("raycluster-controller"),
rayClusterScaleExpectation: expectations.NewRayClusterScaleExpectation(mgr.GetClient()),
options: options,
}
}
// RayClusterReconciler reconciles a RayCluster object
type RayClusterReconciler struct {
client.Client
Scheme *k8sruntime.Scheme
Recorder record.EventRecorder
rayClusterScaleExpectation expectations.RayClusterScaleExpectation
options RayClusterReconcilerOptions
}
type RayClusterReconcilerOptions struct {
RayClusterMetricsManager *metrics.RayClusterMetricsManager
BatchSchedulerManager *batchscheduler.SchedulerManager
HeadSidecarContainers []corev1.Container
WorkerSidecarContainers []corev1.Container
DefaultContainerEnvs []corev1.EnvVar
IsOpenShift bool
UseIngressOnOpenShift bool
}
// Reconcile reads that state of the cluster for a RayCluster object and makes changes based on it
// and what is in the RayCluster.Spec
// Automatically generate RBAC rules to allow the Controller to read and write workloads
// +kubebuilder:rbac:groups=ray.io,resources=rayclusters,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=ray.io,resources=rayclusters/status,verbs=get;update;patch
// +kubebuilder:rbac:groups=ray.io,resources=rayclusters/finalizers,verbs=update
// +kubebuilder:rbac:groups=core,resources=events,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=core,resources=pods,verbs=get;list;watch;create;update;patch;delete;deletecollection
// +kubebuilder:rbac:groups=core,resources=pods/status,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=core,resources=pods/resize,verbs=patch
// +kubebuilder:rbac:groups=core,resources=secrets,verbs=get;list;watch;create;
// +kubebuilder:rbac:groups=core,resources=services,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=core,resources=services/status,verbs=get;update;patch
// +kubebuilder:rbac:groups=coordination.k8s.io,resources=leases,verbs=get;list;create;update
// +kubebuilder:rbac:groups=networking.k8s.io,resources=ingressclasses,verbs=get;list;watch
// +kubebuilder:rbac:groups=networking.k8s.io,resources=ingresses,verbs=get;list;watch;create;update;delete;patch
// +kubebuilder:rbac:groups=route.openshift.io,resources=routes,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=extensions,resources=ingresses,verbs=get;list;watch;create;update;delete;patch
// +kubebuilder:rbac:groups=core,resources=serviceaccounts,verbs=get;list;watch;create;delete
// +kubebuilder:rbac:groups="rbac.authorization.k8s.io",resources=roles,verbs=get;list;watch;create;delete;update
// +kubebuilder:rbac:groups="rbac.authorization.k8s.io",resources=rolebindings,verbs=get;list;watch;create;delete
// [WARNING]: There MUST be a newline after kubebuilder markers.
// Reconcile used to bridge the desired state with the current state
func (r *RayClusterReconciler) Reconcile(ctx context.Context, request ctrl.Request) (ctrl.Result, error) {
logger := ctrl.LoggerFrom(ctx)
var err error
// Try to fetch the RayCluster instance
instance := &rayv1.RayCluster{}
if err = r.Get(ctx, request.NamespacedName, instance); err == nil {
return r.rayClusterReconcile(ctx, instance)
}
// No match found
if errors.IsNotFound(err) {
// Clear all related expectations
r.rayClusterScaleExpectation.Delete(request.Name, request.Namespace)
cleanUpRayClusterMetrics(r.options.RayClusterMetricsManager, request.Name, request.Namespace)
} else {
logger.Error(err, "Read request instance error!")
}
// Error reading the object - requeue the request.
return ctrl.Result{}, client.IgnoreNotFound(err)
}
func (r *RayClusterReconciler) deleteAllPods(ctx context.Context, filters common.AssociationOptions) (pods corev1.PodList, err error) {
logger := ctrl.LoggerFrom(ctx)
if err = r.List(ctx, &pods, filters.ToListOptions()...); err != nil {
return pods, err
}
active := 0
for _, pod := range pods.Items {
if pod.DeletionTimestamp.IsZero() {
active++
}
}
if active > 0 {
logger.Info("Deleting all Pods with labels", "filters", filters, "Number of active Pods", active)
return pods, r.DeleteAllOf(ctx, &corev1.Pod{}, filters.ToDeleteOptions()...)
}
return pods, nil
}
func (r *RayClusterReconciler) rayClusterReconcile(ctx context.Context, instance *rayv1.RayCluster) (ctrl.Result, error) {
var reconcileErr error
logger := ctrl.LoggerFrom(ctx)
if manager := utils.ManagedByExternalController(instance.Spec.ManagedBy); manager != nil {
logger.Info("Skipping RayCluster managed by a custom controller", "managed-by", manager)
return ctrl.Result{}, nil
}
setDefaults(instance)
if err := utils.ValidateRayClusterMetadata(instance.ObjectMeta); err != nil {
logger.Error(err, "The RayCluster metadata is invalid")
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.InvalidRayClusterMetadata),
"The RayCluster metadata is invalid %s/%s: %v", instance.Namespace, instance.Name, err)
return ctrl.Result{}, nil
}
if err := utils.ValidateRayClusterSpec(&instance.Spec, instance.Annotations); err != nil {
logger.Error(err, "The RayCluster spec is invalid")
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.InvalidRayClusterSpec),
"The RayCluster spec is invalid %s/%s: %v", instance.Namespace, instance.Name, err)
return ctrl.Result{}, nil
}
if err := utils.ValidateRayClusterUpgradeOptions(instance); err != nil {
logger.Error(err, "The RayCluster UpgradeStrategy is invalid")
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.InvalidRayClusterSpec),
"The RayCluster UpgradeStrategy is invalid %s/%s: %v", instance.Namespace, instance.Name, err)
return ctrl.Result{}, nil
}
if err := utils.ValidateRayClusterStatus(instance); err != nil {
logger.Error(err, "The RayCluster status is invalid")
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.InvalidRayClusterStatus),
"The RayCluster status is invalid %s/%s, %v", instance.Namespace, instance.Name, err)
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
// Please do NOT modify `originalRayClusterInstance` in the following code.
originalRayClusterInstance := instance.DeepCopy()
// The `enableGCSFTRedisCleanup` is a feature flag introduced in KubeRay v1.0.0. It determines whether
// the Redis cleanup job should be activated. Users can disable the feature by setting the environment
// variable `ENABLE_GCS_FT_REDIS_CLEANUP` to `false`, and undertake the Redis storage namespace cleanup
// manually after the RayCluster CR deletion.
enableGCSFTRedisCleanup := strings.ToLower(os.Getenv(utils.ENABLE_GCS_FT_REDIS_CLEANUP)) != "false"
if enableGCSFTRedisCleanup && utils.IsGCSFaultToleranceEnabled(&instance.Spec, instance.Annotations) {
if instance.DeletionTimestamp.IsZero() {
if !controllerutil.ContainsFinalizer(instance, utils.GCSFaultToleranceRedisCleanupFinalizer) {
logger.Info(
"GCS fault tolerance has been enabled. Implementing a finalizer to ensure that Redis is properly cleaned up once the RayCluster custom resource (CR) is deleted.",
"finalizer", utils.GCSFaultToleranceRedisCleanupFinalizer)
controllerutil.AddFinalizer(instance, utils.GCSFaultToleranceRedisCleanupFinalizer)
if err := r.Update(ctx, instance); err != nil {
err = fmt.Errorf("failed to add the finalizer %s to the RayCluster: %w", utils.GCSFaultToleranceRedisCleanupFinalizer, err)
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
// Only start the RayCluster reconciliation after the finalizer is added.
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, nil
}
} else {
logger.Info(
"The RayCluster with GCS enabled is being deleted. Start to handle the Redis cleanup finalizer.",
"redisCleanupFinalizer", utils.GCSFaultToleranceRedisCleanupFinalizer,
"deletionTimestamp", instance.ObjectMeta.DeletionTimestamp,
)
// Delete the head Pod if it exists.
headPods, err := r.deleteAllPods(ctx, common.RayClusterHeadPodsAssociationOptions(instance))
if err != nil {
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
// Delete all worker Pods if they exist.
if _, err = r.deleteAllPods(ctx, common.RayClusterWorkerPodsAssociationOptions(instance)); err != nil {
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
if len(headPods.Items) > 0 {
logger.Info(
"Wait for the head Pod to be terminated before initiating the Redis cleanup process. "+"The storage namespace in Redis cannot be fully deleted if the GCS process on the head Pod is still writing to it.",
"headPodName", headPods.Items[0].Name,
"redisStorageNamespace", headPods.Items[0].Annotations[utils.RayExternalStorageNSAnnotationKey],
)
// Requeue after 10 seconds because it takes much longer than DefaultRequeueDuration (2 seconds) for the head Pod to be terminated.
return ctrl.Result{RequeueAfter: 10 * time.Second}, nil
}
filterLabels := common.RayClusterRedisCleanupJobAssociationOptions(instance).ToListOptions()
redisCleanupJobs := batchv1.JobList{}
if err := r.List(ctx, &redisCleanupJobs, filterLabels...); err != nil {
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
if len(redisCleanupJobs.Items) != 0 {
// Check whether the Redis cleanup Job has been completed.
redisCleanupJob := redisCleanupJobs.Items[0]
logger.Info("Redis cleanup Job status", "Job name", redisCleanupJob.Name,
"Active", redisCleanupJob.Status.Active, "Succeeded", redisCleanupJob.Status.Succeeded, "Failed", redisCleanupJob.Status.Failed)
if condition, finished := utils.IsJobFinished(&redisCleanupJob); finished {
controllerutil.RemoveFinalizer(instance, utils.GCSFaultToleranceRedisCleanupFinalizer)
if err := r.Update(ctx, instance); err != nil {
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
switch condition {
case batchv1.JobComplete:
logger.Info(
"The Redis cleanup Job has been completed. "+
"The storage namespace in Redis has been fully deleted.",
"redisCleanupJobName", redisCleanupJob.Name,
"redisStorageNamespace", redisCleanupJob.Annotations[utils.RayExternalStorageNSAnnotationKey],
)
case batchv1.JobFailed:
logger.Info(
"The Redis cleanup Job has failed, requeue the RayCluster CR after 5 minute. "+
"You should manually delete the storage namespace in Redis and remove the RayCluster's finalizer. "+
"Please check https://docs.ray.io/en/master/cluster/kubernetes/user-guides/kuberay-gcs-ft.html for more details.",
"redisCleanupJobName", redisCleanupJob.Name,
"redisStorageNamespace", redisCleanupJob.Annotations[utils.RayExternalStorageNSAnnotationKey],
)
}
return ctrl.Result{}, nil
}
// the redisCleanupJob is still running
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, nil
}
redisCleanupJob := r.buildRedisCleanupJob(ctx, *instance)
if err := r.Create(ctx, &redisCleanupJob); err != nil {
if errors.IsAlreadyExists(err) {
logger.Info("Redis cleanup Job already exists. Requeue the RayCluster CR.")
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, nil
}
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToCreateRedisCleanupJob),
"Failed to create Redis cleanup Job %s/%s, %v", redisCleanupJob.Namespace, redisCleanupJob.Name, err)
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
logger.Info("Created Redis cleanup Job", "name", redisCleanupJob.Name)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.CreatedRedisCleanupJob),
"Created Redis cleanup Job %s/%s", redisCleanupJob.Namespace, redisCleanupJob.Name)
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, nil
}
}
if instance.DeletionTimestamp != nil && !instance.DeletionTimestamp.IsZero() {
logger.Info("RayCluster is being deleted, just ignore")
return ctrl.Result{}, nil
}
if cond := meta.FindStatusCondition(instance.Status.Conditions, string(rayv1.IdleTTLExpired)); cond != nil && cond.Status == metav1.ConditionTrue && isIdleTTLTerminationEnabled(instance) {
logger.Info("Deleting RayCluster because the idle TTL has expired", "condition", cond)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(rayv1.IdleTTLExpired), "%s", cond.Message)
if err := r.Delete(ctx, instance); err != nil {
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, client.IgnoreNotFound(err)
}
return ctrl.Result{}, nil
}
reconcileFuncs := []reconcileFunc{
r.reconcileAutoscalerServiceAccount,
r.reconcileAutoscalerRole,
r.reconcileAutoscalerRoleBinding,
r.reconcileIngress,
r.reconcileAuthSecret,
r.reconcileHeadService,
r.reconcileHeadlessService,
r.reconcileServeService,
r.reconcilePods,
}
for _, fn := range reconcileFuncs {
if reconcileErr = fn(ctx, instance); reconcileErr != nil {
funcName := runtime.FuncForPC(reflect.ValueOf(fn).Pointer()).Name()
logger.Error(reconcileErr, "Error reconcile resources", "function name", funcName)
break
}
}
// Calculate the new status for the RayCluster. Note that the function will deep copy `instance` instead of mutating it.
newInstance, calculateErr := r.calculateStatus(ctx, instance, reconcileErr)
var updateErr error
var inconsistent bool
if calculateErr != nil {
logger.Info("Got error when calculating new status", "error", calculateErr)
} else {
inconsistent, updateErr = r.updateRayClusterStatus(ctx, originalRayClusterInstance, newInstance)
}
// Return error based on order.
var err error
if reconcileErr != nil {
err = reconcileErr
} else if calculateErr != nil {
err = calculateErr
} else {
err = updateErr
}
// If the custom resource's status is updated, requeue the reconcile key.
// Without this behavior, atomic operations such as the suspend operation would need to wait for `RAYCLUSTER_DEFAULT_REQUEUE_SECONDS` to delete Pods
// after the condition rayv1.RayClusterSuspending is set to true.
if err != nil || inconsistent {
return ctrl.Result{RequeueAfter: DefaultRequeueDuration}, err
}
// Unconditionally requeue after the number of seconds specified in the
// environment variable RAYCLUSTER_DEFAULT_REQUEUE_SECONDS_ENV. If the
// environment variable is not set, requeue after the default value.
requeueAfterSeconds, err := strconv.Atoi(os.Getenv(utils.RAYCLUSTER_DEFAULT_REQUEUE_SECONDS_ENV))
if err != nil {
logger.Info(
"Environment variable is not set, using default value of seconds",
"environmentVariable", utils.RAYCLUSTER_DEFAULT_REQUEUE_SECONDS_ENV,
"defaultValue", utils.RAYCLUSTER_DEFAULT_REQUEUE_SECONDS,
)
requeueAfterSeconds = utils.RAYCLUSTER_DEFAULT_REQUEUE_SECONDS
}
logger.Info("Unconditional requeue after", "seconds", requeueAfterSeconds)
return ctrl.Result{RequeueAfter: time.Duration(requeueAfterSeconds) * time.Second}, nil
}
func isIdleTTLTerminationEnabled(instance *rayv1.RayCluster) bool {
return instance != nil &&
utils.IsAutoscalingEnabled(&instance.Spec) &&
instance.Spec.AutoscalerOptions != nil &&
instance.Spec.AutoscalerOptions.TTLSecondsAfterIdle != nil
}
func (r *RayClusterReconciler) reconcileAuthSecret(ctx context.Context, instance *rayv1.RayCluster) error {
logger := ctrl.LoggerFrom(ctx)
logger.Info("Reconciling Auth")
if instance.Spec.AuthOptions == nil || instance.Spec.AuthOptions.Mode == rayv1.AuthModeDisabled {
return nil
}
// When K8s token auth is enabled, authentication is delegated to the K8s API server
// via ServiceAccount tokens, so no Secret needs to be created.
if utils.IsK8sAuthEnabled(instance.Spec.AuthOptions) {
return nil
}
if instance.Spec.AuthOptions.SecretName != nil && *instance.Spec.AuthOptions.SecretName != "" {
return nil
}
secret := &corev1.Secret{}
secretName := utils.CheckName(instance.Name)
err := r.Get(ctx, types.NamespacedName{Name: secretName, Namespace: instance.Namespace}, secret)
if err != nil {
if errors.IsNotFound(err) {
return r.createAuthSecret(ctx, instance, secretName)
}
return err
}
return nil
}
// createAuthSecret generates a new secret with a random token.
func (r *RayClusterReconciler) createAuthSecret(ctx context.Context, rayCluster *rayv1.RayCluster, secretName string) error {
token, err := generateRandomToken(32)
if err != nil {
return err
}
secret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: secretName,
Namespace: rayCluster.Namespace,
Labels: map[string]string{
utils.RayClusterLabelKey: rayCluster.Name,
},
OwnerReferences: []metav1.OwnerReference{
*metav1.NewControllerRef(rayCluster, rayv1.SchemeGroupVersion.WithKind("RayCluster")),
},
},
StringData: map[string]string{
"auth_token": token,
},
}
return r.Create(ctx, secret)
}
// generateRandomToken creates a random base64 encoded string.
func generateRandomToken(length int) (string, error) {
bytes := make([]byte, length)
if _, err := rand.Read(bytes); err != nil {
return "", err
}
return base64.StdEncoding.EncodeToString(bytes), nil
}
// shouldCreateOpenShiftRoute determines if an OpenShift Route should be created based on cluster type and configuration.
// Uses the stored values from reconciler options (no function calls during reconciliation).
// TODO: Remove once Gateway API support is mature and Route-based dashboard access is no longer needed.
// See: https://github.com/ray-project/kuberay/pull/4365#issuecomment-4143407845
func (r *RayClusterReconciler) shouldCreateOpenShiftRoute() bool {
return r.options.IsOpenShift && !r.options.UseIngressOnOpenShift
}
func (r *RayClusterReconciler) reconcileIngress(ctx context.Context, instance *rayv1.RayCluster) error {
logger := ctrl.LoggerFrom(ctx)
logger.Info("Reconciling Ingress")
if instance.Spec.HeadGroupSpec.EnableIngress == nil || !*instance.Spec.HeadGroupSpec.EnableIngress {
return nil
}
if r.shouldCreateOpenShiftRoute() {
return r.reconcileRouteOpenShift(ctx, instance)
}
return r.reconcileIngressKubernetes(ctx, instance)
}
func (r *RayClusterReconciler) reconcileRouteOpenShift(ctx context.Context, instance *rayv1.RayCluster) error {
logger := ctrl.LoggerFrom(ctx)
headRoutes := routev1.RouteList{}
filterLabels := common.RayClusterNetworkResourcesOptions(instance).ToListOptions()
if err := r.List(ctx, &headRoutes, filterLabels...); err != nil {
return err
}
if len(headRoutes.Items) == 1 {
logger.Info("reconcileIngresses", "head service route found", headRoutes.Items[0].Name)
return nil
}
if len(headRoutes.Items) == 0 {
route, err := common.BuildRouteForHeadService(*instance)
if err != nil {
return err
}
if err := ctrl.SetControllerReference(instance, route, r.Scheme); err != nil {
return err
}
if err := r.createHeadRoute(ctx, route, instance); err != nil {
return err
}
}
return nil
}
func (r *RayClusterReconciler) reconcileIngressKubernetes(ctx context.Context, instance *rayv1.RayCluster) error {
logger := ctrl.LoggerFrom(ctx)
headIngresses := networkingv1.IngressList{}
filterLabels := common.RayClusterNetworkResourcesOptions(instance).ToListOptions()
if err := r.List(ctx, &headIngresses, filterLabels...); err != nil {
return err
}
if len(headIngresses.Items) == 1 {
logger.Info("reconcileIngresses", "head service ingress found", headIngresses.Items[0].Name)
return nil
}
if len(headIngresses.Items) == 0 {
ingress, err := common.BuildIngressForHeadService(ctx, *instance)
if err != nil {
return err
}
if err := ctrl.SetControllerReference(instance, ingress, r.Scheme); err != nil {
return err
}
if err := r.createHeadIngress(ctx, ingress, instance); err != nil {
return err
}
}
return nil
}
// Return nil only when the head service successfully created or already exists.
func (r *RayClusterReconciler) reconcileHeadService(ctx context.Context, instance *rayv1.RayCluster) error {
logger := ctrl.LoggerFrom(ctx)
services := corev1.ServiceList{}
filterLabels := common.RayClusterHeadServiceListOptions(instance)
if err := r.List(ctx, &services, filterLabels...); err != nil {
return err
}
// Check if there's existing head service in the cluster.
if len(services.Items) != 0 {
if len(services.Items) == 1 {
logger.Info("reconcileHeadService", "1 head service found", services.Items[0].Name)
return nil
}
// This should never happen. This protects against the case that users manually create service with the same label.
if len(services.Items) > 1 {
logger.Info("reconcileHeadService", "Duplicate head service found", services.Items)
return fmt.Errorf("%d head service found %v", len(services.Items), services.Items)
}
} else {
// Create head service if there's no existing one in the cluster.
labels := make(map[string]string)
if val, ok := instance.Spec.HeadGroupSpec.Template.ObjectMeta.Labels[utils.KubernetesApplicationNameLabelKey]; ok {
labels[utils.KubernetesApplicationNameLabelKey] = val
}
annotations := make(map[string]string)
// TODO (kevin85421): KubeRay has already exposed the entire head service (#1040) to users.
// We may consider deprecating this field when we bump the CRD version.
maps.Copy(annotations, instance.Spec.HeadServiceAnnotations)
headSvc, err := common.BuildServiceForHeadPod(ctx, *instance, labels, annotations)
if err != nil {
return err
}
// TODO (kevin85421): Provide a detailed and actionable error message. For example, which port is missing?
if len(headSvc.Spec.Ports) == 0 {
logger.Info("Ray head service does not have any ports set up.", "serviceSpecification", headSvc.Spec)
return fmt.Errorf("ray head service does not have any ports set up. Service specification: %v", headSvc.Spec)
}
if err := r.createService(ctx, headSvc, instance); err != nil {
return err
}
}
return nil
}
// Return nil only when the serve service successfully created or already exists.
func (r *RayClusterReconciler) reconcileServeService(ctx context.Context, instance *rayv1.RayCluster) error {
// Only reconcile the K8s service for Ray Serve when the "ray.io/enable-serve-service" annotation is set to true.
if enableServeServiceValue, exist := instance.Annotations[utils.EnableServeServiceKey]; !exist || enableServeServiceValue != utils.EnableServeServiceTrue {
return nil
}
// Retrieve the Service from the Kubernetes cluster with the name and namespace.
svc := &corev1.Service{}
err := r.Get(ctx, common.RayClusterServeServiceNamespacedName(instance), svc)
if err == nil {
// service exists, do nothing
return nil
} else if errors.IsNotFound(err) {
// Service does not exist, create it
svc, err = common.BuildServeServiceForRayCluster(ctx, *instance)
if err != nil {
return err
}
// Set the ownwer reference
if err := ctrl.SetControllerReference(instance, svc, r.Scheme); err != nil {
return err
}
// create service
return r.Create(ctx, svc)
}
return err
}
// Return nil only when the headless service for multi-host worker groups is successfully created or already exists.
func (r *RayClusterReconciler) reconcileHeadlessService(ctx context.Context, instance *rayv1.RayCluster) error {
// Check if there are worker groups with NumOfHosts > 1 in the cluster
isMultiHost := false
for _, workerGroup := range instance.Spec.WorkerGroupSpecs {
if workerGroup.NumOfHosts > 1 {
isMultiHost = true
break
}
}
if isMultiHost {
services := corev1.ServiceList{}
options := common.RayClusterHeadlessServiceListOptions(instance)
if err := r.List(ctx, &services, options...); err != nil {
return err
}
// Check if there's an existing headless service in the cluster.
if len(services.Items) != 0 {
// service exists, do nothing
return nil
}
// Create headless tpu worker service if there's no existing one in the cluster.
headlessSvc := common.BuildHeadlessServiceForRayCluster(*instance)
if err := r.createService(ctx, headlessSvc, instance); err != nil {
return err
}
}
return nil
}
func (r *RayClusterReconciler) reconcilePods(ctx context.Context, instance *rayv1.RayCluster) error {
logger := ctrl.LoggerFrom(ctx)
// Calculate RayCluster spec hash for the UpgradeStrategy
clusterHash, err := utils.GenerateHashWithoutReplicasAndWorkersToDelete(instance.Spec)
if err != nil {
return err
}
// if RayCluster is suspending, delete all pods and skip reconcile
suspendStatus := utils.FindRayClusterSuspendStatus(instance)
statusConditionGateEnabled := features.Enabled(features.RayClusterStatusConditions)
if suspendStatus == rayv1.RayClusterSuspending ||
(!statusConditionGateEnabled && instance.Spec.Suspend != nil && *instance.Spec.Suspend) {
if _, err := r.deleteAllPods(ctx, common.RayClusterAllPodsAssociationOptions(instance)); err != nil {
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeletePodCollection),
"Failed deleting Pods due to suspension for RayCluster %s/%s, %v",
instance.Namespace, instance.Name, err)
return errstd.Join(utils.ErrFailedDeleteAllPods, err)
}
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedPod),
"Deleted Pods for RayCluster %s/%s due to suspension",
instance.Namespace, instance.Name)
return nil
}
if statusConditionGateEnabled {
if suspendStatus == rayv1.RayClusterSuspended {
return nil // stop reconcilePods because the cluster is suspended.
}
// (suspendStatus != rayv1.RayClusterSuspending) is always true here because it has been checked above.
if instance.Spec.Suspend != nil && *instance.Spec.Suspend {
return nil // stop reconcilePods because the cluster is going to suspend.
}
}
// Check if pods need to be recreated with Recreate upgradeStrategy
if r.shouldRecreatePodsForUpgrade(ctx, instance) {
logger.Info("RayCluster spec changed with Recreate upgradeStrategy, deleting all pods")
if _, err := r.deleteAllPods(ctx, common.RayClusterAllPodsAssociationOptions(instance)); err != nil {
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeletePodCollection),
"Failed deleting Pods due to spec change with Recreate upgradeStrategy for RayCluster %s/%s, %v",
instance.Namespace, instance.Name, err)
return errstd.Join(utils.ErrFailedDeleteAllPods, err)
}
r.rayClusterScaleExpectation.Delete(instance.Name, instance.Namespace)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedPod),
"Deleted all Pods for RayCluster %s/%s due to spec change with Recreate upgradeStrategy",
instance.Namespace, instance.Name)
return nil
}
// check if all the pods exist
headPods := corev1.PodList{}
if err := r.List(ctx, &headPods, common.RayClusterHeadPodsAssociationOptions(instance).ToListOptions()...); err != nil {
return err
}
// check if the batch scheduler integration is enabled
// call the scheduler plugin if so
if r.options.BatchSchedulerManager != nil {
if scheduler, err := r.options.BatchSchedulerManager.GetScheduler(); err == nil {
if err := scheduler.DoBatchSchedulingOnSubmission(ctx, instance); err != nil {
return err
}
} else {
return err
}
}
// Reconcile head Pod
if !r.rayClusterScaleExpectation.IsSatisfied(ctx, instance.Namespace, instance.Name, expectations.HeadGroup) {
logger.Info("reconcilePods", "Expectation", "NotSatisfiedHeadExpectations, reconcile head later")
} else if len(headPods.Items) == 1 {
headPod := headPods.Items[0]
logger.Info("reconcilePods", "Found 1 head Pod", headPod.Name, "Pod status", headPod.Status.Phase,
"Pod status reason", headPod.Status.Reason,
"Pod restart policy", headPod.Spec.RestartPolicy,
"Ray container terminated status", getRayContainerStateTerminated(headPod))
shouldDelete, reason := shouldDeletePod(headPod, rayv1.HeadNode)
logger.Info("reconcilePods", "head Pod", headPod.Name, "shouldDelete", shouldDelete, "reason", reason)
if shouldDelete {
if err := r.Delete(ctx, &headPod); err != nil {
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeleteHeadPod),
"Failed deleting head Pod %s/%s; Pod status: %s; Pod restart policy: %s; Ray container terminated status: %v, %v",
headPod.Namespace, headPod.Name, headPod.Status.Phase, headPod.Spec.RestartPolicy, getRayContainerStateTerminated(headPod), err)
return errstd.Join(utils.ErrFailedDeleteHeadPod, err)
}
r.rayClusterScaleExpectation.ExpectScalePod(headPod.Namespace, instance.Name, expectations.HeadGroup, headPod.Name, expectations.Delete)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedHeadPod),
"Deleted head Pod %s/%s; Pod status: %s; Pod restart policy: %s; Ray container terminated status: %v",
headPod.Namespace, headPod.Name, headPod.Status.Phase, headPod.Spec.RestartPolicy, getRayContainerStateTerminated(headPod))
return errstd.New(reason)
}
} else if len(headPods.Items) == 0 {
if meta.IsStatusConditionTrue(instance.Status.Conditions, string(rayv1.RayClusterProvisioned)) &&
shouldSkipHeadPodRestart(instance) {
// Recreating the head Pod if the RayCluster created by RayJob is provisioned doesn't help RayJob.
//
// Case 1: GCS fault tolerance is disabled
//
// In this case, the worker Pods will be killed by the new head Pod when it is created, so the new Ray job will not be running in
// a "provisioned" cluster.
//
// Case 2: GCS fault tolerance is enabled
//
// In this case, the worker Pods will not be killed by the new head Pod when it is created, but the submission ID has already been
// used by the old Ray job, so the new Ray job will fail.
logger.Info(
"reconcilePods: Found 0 head Pods for the RayCluster; Skipped head recreation due to ray.io/disable-provisioned-head-restart",
"rayCluster", instance.Name,
)
return nil
}
// Create head Pod if it does not exist.
logger.Info("reconcilePods: Found 0 head Pods; creating a head Pod for the RayCluster.")
if err := r.createHeadPod(ctx, *instance, clusterHash); err != nil {
return errstd.Join(utils.ErrFailedCreateHeadPod, err)
}
} else if len(headPods.Items) > 1 { // This should never happen. This protects against the case that users manually create headpod.
headPodNames := make([]string, len(headPods.Items))
for i, pod := range headPods.Items {
headPodNames[i] = pod.Name
}
logger.Info("Multiple head pods found, it should only exist one head pod. Please delete extra head pods.",
"found pods", headPodNames,
)
return fmt.Errorf("%d head pods found %v. Please delete extra head pods", len(headPods.Items), headPodNames)
}
// Reconcile worker pods now
for _, worker := range instance.Spec.WorkerGroupSpecs {
if !r.rayClusterScaleExpectation.IsSatisfied(ctx, instance.Namespace, instance.Name, worker.GroupName) {
logger.Info("reconcilePods", "worker group", worker.GroupName, "Expectation", "NotSatisfiedGroupExpectations, reconcile the group later")
continue
}
// workerReplicas will store the target number of pods for this worker group.
numExpectedWorkerPods := int(utils.GetWorkerGroupDesiredReplicas(worker))
logger.Info("reconcilePods", "desired workerReplicas (always adhering to minReplicas/maxReplica)", numExpectedWorkerPods, "worker group", worker.GroupName, "maxReplicas", worker.MaxReplicas, "minReplicas", worker.MinReplicas, "replicas", worker.Replicas)
workerPods := corev1.PodList{}
if err := r.List(ctx, &workerPods, common.RayClusterGroupPodsAssociationOptions(instance, worker.GroupName).ToListOptions()...); err != nil {
return err
}
// Delete all workers if worker group is suspended and skip reconcile
if worker.Suspend != nil && *worker.Suspend {
if _, err := r.deleteAllPods(ctx, common.RayClusterGroupPodsAssociationOptions(instance, worker.GroupName)); err != nil {
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeleteWorkerPodCollection),
"Failed deleting worker Pods for suspended group %s in RayCluster %s/%s, %v", worker.GroupName, instance.Namespace, instance.Name, err)
return errstd.Join(utils.ErrFailedDeleteWorkerPod, err)
}
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedWorkerPod),
"Deleted all pods for suspended worker group %s in RayCluster %s/%s", worker.GroupName, instance.Namespace, instance.Name)
continue
}
isRayMultiHostIndexing := worker.NumOfHosts > 1 && features.Enabled(features.RayMultiHostIndexing)
if isRayMultiHostIndexing {
if err := r.reconcileMultiHostWorkerGroup(ctx, instance, &worker, workerPods.Items); err != nil {
return err
}
// Skip to the next worker as we've already handled multi-host reconciliation.
continue
}
// Delete unhealthy worker Pods.
deletedWorkers := make(map[string]struct{})
deleted := struct{}{}
numDeletedUnhealthyWorkerPods := 0
for _, workerPod := range workerPods.Items {
shouldDelete, reason := shouldDeletePod(workerPod, rayv1.WorkerNode)
logger.Info("reconcilePods", "worker Pod", workerPod.Name, "shouldDelete", shouldDelete, "reason", reason)
if shouldDelete {
numDeletedUnhealthyWorkerPods++
deletedWorkers[workerPod.Name] = deleted
if err := r.Delete(ctx, &workerPod); err != nil {
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeleteWorkerPod),
"Failed deleting worker Pod %s/%s; Pod status: %s; Pod restart policy: %s; Ray container terminated status: %v, %v",
workerPod.Namespace, workerPod.Name, workerPod.Status.Phase, workerPod.Spec.RestartPolicy, getRayContainerStateTerminated(workerPod), err)
return errstd.Join(utils.ErrFailedDeleteWorkerPod, err)
}
r.rayClusterScaleExpectation.ExpectScalePod(workerPod.Namespace, instance.Name, worker.GroupName, workerPod.Name, expectations.Delete)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedWorkerPod),
"Deleted worker Pod %s/%s; Pod status: %s; Pod restart policy: %s; Ray container terminated status: %v",
workerPod.Namespace, workerPod.Name, workerPod.Status.Phase, workerPod.Spec.RestartPolicy, getRayContainerStateTerminated(workerPod))
}
}
// If we delete unhealthy Pods, we will not create new Pods in this reconciliation.
if numDeletedUnhealthyWorkerPods > 0 {
return fmt.Errorf("delete %d unhealthy worker Pods", numDeletedUnhealthyWorkerPods)
}
// Always remove the specified WorkersToDelete - regardless of the value of Replicas.
// Essentially WorkersToDelete has to be deleted to meet the expectations of the Autoscaler.
logger.Info("reconcilePods", "removing the pods in the scaleStrategy of", worker.GroupName)
for _, podsToDelete := range worker.ScaleStrategy.WorkersToDelete {
pod := corev1.Pod{}
pod.Name = podsToDelete
pod.Namespace = utils.GetNamespace(instance.ObjectMeta)
logger.Info("Deleting pod", "namespace", pod.Namespace, "name", pod.Name)
if err := r.Delete(ctx, &pod); err != nil {
if !errors.IsNotFound(err) {
logger.Info("reconcilePods", "Fail to delete Pod", pod.Name, "error", err)
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeleteWorkerPod), "Failed deleting pod %s/%s, %v", pod.Namespace, pod.Name, err)
return errstd.Join(utils.ErrFailedDeleteWorkerPod, err)
}
logger.Info("reconcilePods", "The worker Pod has already been deleted", pod.Name)
} else {
r.rayClusterScaleExpectation.ExpectScalePod(pod.Namespace, instance.Name, worker.GroupName, pod.Name, expectations.Delete)
deletedWorkers[pod.Name] = deleted
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedWorkerPod), "Deleted pod %s/%s", pod.Namespace, pod.Name)
}
}
worker.ScaleStrategy.WorkersToDelete = []string{}
runningPods := corev1.PodList{}
for _, pod := range workerPods.Items {
if _, ok := deletedWorkers[pod.Name]; !ok {
runningPods.Items = append(runningPods.Items, pod)
}
}
// A replica can contain multiple hosts, so we need to calculate this based on the number of hosts per replica.
// If the user doesn't install the CRD with `NumOfHosts`, the zero value of `NumOfHosts`, which is 0, will be used.
// Hence, all workers will be deleted. Here, we set `NumOfHosts` to max(1, `NumOfHosts`) to avoid this situation.
if worker.NumOfHosts <= 0 {
worker.NumOfHosts = 1
}
diff := numExpectedWorkerPods - len(runningPods.Items)
logger.Info("reconcilePods", "workerReplicas", numExpectedWorkerPods, "NumOfHosts", worker.NumOfHosts, "runningPods", len(runningPods.Items), "diff", diff)
// Support replica indices for single-host, multi-slice environments.
validReplicaIndices := make(map[int]bool)
if features.Enabled(features.RayMultiHostIndexing) {
for _, pod := range runningPods.Items {
if indexStr, ok := pod.Labels[utils.RayWorkerReplicaIndexKey]; ok {
if index, err := strconv.Atoi(indexStr); err == nil {
validReplicaIndices[index] = true
}
}
}
logger.Info("reconcilePods: found existing replica indices", "group", worker.GroupName, "indices", validReplicaIndices)
}
if diff > 0 {
// pods need to be added
logger.Info("reconcilePods", "Number workers to add", diff, "Worker group", worker.GroupName)
if features.Enabled(features.RayMultiHostIndexing) {
newReplicaIndex := 0
// create all workers of this group
for i := range diff {
// Find the next available replica index.
for validReplicaIndices[newReplicaIndex] {
newReplicaIndex++
}
validReplicaIndices[newReplicaIndex] = true
logger.Info("reconcilePods", "creating worker for group", worker.GroupName, "index", i, "total", diff, "replicaIndex", newReplicaIndex)
if err := r.createWorkerPodWithIndex(ctx, *instance, *worker.DeepCopy(), "", newReplicaIndex, 0); err != nil {
return errstd.Join(utils.ErrFailedCreateWorkerPod, err)
}
}
} else {
// create all workers of this group
for i := range diff {
logger.Info("reconcilePods", "creating worker for group", worker.GroupName, "index", i, "total", diff)
if err := r.createWorkerPod(ctx, *instance, *worker.DeepCopy()); err != nil {
return errstd.Join(utils.ErrFailedCreateWorkerPod, err)
}
}
}
} else if diff == 0 {
logger.Info("reconcilePods", "all workers already exist for group", worker.GroupName)
continue
} else {
// diff < 0 indicates the need to delete some Pods to match the desired number of replicas. However,
// randomly deleting Pods is certainly not ideal. So, if autoscaling is enabled for the cluster, we
// will disable random Pod deletion, making Autoscaler the sole decision-maker for Pod deletions.
enableInTreeAutoscaling := utils.IsAutoscalingEnabled(&instance.Spec)
// TODO (kevin85421): `enableRandomPodDelete` is a feature flag for KubeRay v0.6.0. If users want to use
// the old behavior, they can set the environment variable `ENABLE_RANDOM_POD_DELETE` to `true`. When the
// default behavior is stable enough, we can remove this feature flag.
enableRandomPodDelete := false
if enableInTreeAutoscaling {
if s := os.Getenv(utils.ENABLE_RANDOM_POD_DELETE); strings.ToLower(s) == "true" {
enableRandomPodDelete = true
}
}
// Case 1: If Autoscaler is disabled, we will always enable random Pod deletion no matter the value of the feature flag.
// Case 2: If Autoscaler is enabled, we will respect the value of the feature flag. If the feature flag environment variable
// is not set, we will disable random Pod deletion by default.
if !enableInTreeAutoscaling || enableRandomPodDelete {
// diff < 0 means that we need to delete some Pods to meet the desired number of replicas.
randomlyRemovedWorkers := -diff
logger.Info("reconcilePods", "Number workers to delete randomly", randomlyRemovedWorkers, "Worker group", worker.GroupName)
for i := range randomlyRemovedWorkers {
randomPodToDelete := runningPods.Items[i]
logger.Info("Randomly deleting Pod", "progress", fmt.Sprintf("%d / %d", i+1, randomlyRemovedWorkers), "with name", randomPodToDelete.Name)
if err := r.Delete(ctx, &randomPodToDelete); err != nil {
if !errors.IsNotFound(err) {
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeleteWorkerPod), "Failed deleting Pod %s/%s, %v", randomPodToDelete.Namespace, randomPodToDelete.Name, err)
return errstd.Join(utils.ErrFailedDeleteWorkerPod, err)
}
logger.Info("reconcilePods", "The worker Pod has already been deleted", randomPodToDelete.Name)
}
r.rayClusterScaleExpectation.ExpectScalePod(randomPodToDelete.Namespace, instance.Name, worker.GroupName, randomPodToDelete.Name, expectations.Delete)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedWorkerPod), "Deleted Pod %s/%s", randomPodToDelete.Namespace, randomPodToDelete.Name)
}
} else {
logger.Info("Random Pod deletion is disabled for the cluster. The only decision-maker for Pod deletions is Autoscaler.")
}
}
}
return nil
}
// deletePods is a helper function to handle the deletion of a list of Pods, setting scale expectations
// and recording events.
func (r *RayClusterReconciler) deletePods(ctx context.Context, instance *rayv1.RayCluster, podsToDelete []corev1.Pod, groupName string, reason string) error {
for i := range podsToDelete {
pod := podsToDelete[i]
if err := r.Delete(ctx, &pod); err != nil {
if errors.IsNotFound(err) {
continue
}
r.Recorder.Eventf(instance, corev1.EventTypeWarning, string(utils.FailedToDeleteWorkerPod),
"Failed deleting worker Pod %s/%s for group %s; Pod status: %s; Pod restart policy: %s; Ray container terminated status: %v, %v",
pod.Namespace, pod.Name, groupName, pod.Status.Phase, pod.Spec.RestartPolicy, getRayContainerStateTerminated(pod), err)
return errstd.Join(utils.ErrFailedDeleteWorkerPod, err)
}
r.rayClusterScaleExpectation.ExpectScalePod(pod.Namespace, instance.Name, groupName, pod.Name, expectations.Delete)
r.Recorder.Eventf(instance, corev1.EventTypeNormal, string(utils.DeletedWorkerPod),
"Deleted worker Pod %s/%s for group %s: %s", pod.Namespace, pod.Name, groupName, reason)
}
return nil
}
// reconcileMultiHostWorkerGroup handles reconciliation and Pod deletion for worker groups with NumOfHosts > 1 when
// the RayMultihostIndexing feature is enabled. This function is responsible for:
// 1. Deleting incomplete or unhealthy multi-host groups atomically.
// 2. Explicit deletes of entire multi-host groups for the autoscaler.
// 3. Scale up/down of multi-host groups.
func (r *RayClusterReconciler) reconcileMultiHostWorkerGroup(ctx context.Context, instance *rayv1.RayCluster, worker *rayv1.WorkerGroupSpec, workerPods []corev1.Pod) error {
logger := ctrl.LoggerFrom(ctx)
// 1. Group existing pods by ray.io/worker-group-replica-index.
replicaMap := make(map[string][]corev1.Pod)
for _, pod := range workerPods {
if replicaName, ok := pod.Labels[utils.RayWorkerReplicaNameKey]; ok {
replicaMap[replicaName] = append(replicaMap[replicaName], pod)
}
}
// 2. Clean up incomplete replica groups with deleted Pods caused by external deletion.
for replicaName, podList := range replicaMap {
if len(podList) < int(worker.NumOfHosts) {
logger.Info("Found incomplete multi-host replica group, deleting all remaining pods to maintain atomicity.", "group", worker.GroupName, "replica", replicaName, "found", len(podList), "expected", worker.NumOfHosts)
if err := r.deletePods(ctx, instance, podList, worker.GroupName, "cleanup of incomplete multi-host group"); err != nil {
return err
}
// Requeue to avoid creating new Pods on this reconciliation.
return fmt.Errorf("cleaned up incomplete replica group %s, requeueing", replicaName)
}
}