@@ -337,9 +337,7 @@ func desiredServiceAccount(cluster *rayv1.RayCluster) *corev1ac.ServiceAccountAp
337
337
`{"kind":"OAuthRedirectReference","apiVersion":"v1",` +
338
338
`"reference":{"kind":"Route","name":"` + dashboardNameFromCluster (cluster ) + `"}}` ,
339
339
}).
340
- WithOwnerReferences (
341
- metav1ac .OwnerReference ().WithUID (cluster .UID ).WithName (cluster .Name ).WithKind (cluster .Kind ).WithAPIVersion (cluster .APIVersion ).WithController (true ),
342
- )
340
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
343
341
}
344
342
345
343
func dashboardNameFromCluster (cluster * rayv1.RayCluster ) string {
@@ -361,9 +359,7 @@ func desiredClusterRoute(cluster *rayv1.RayCluster) *routev1ac.RouteApplyConfigu
361
359
WithTermination (routev1 .TLSTerminationReencrypt ),
362
360
),
363
361
).
364
- WithOwnerReferences (
365
- metav1ac .OwnerReference ().WithUID (cluster .UID ).WithName (cluster .Name ).WithKind (cluster .Kind ).WithAPIVersion (cluster .APIVersion ).WithController (true ),
366
- )
362
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
367
363
}
368
364
369
365
func oauthServiceNameFromCluster (cluster * rayv1.RayCluster ) string {
@@ -389,9 +385,7 @@ func desiredOAuthService(cluster *rayv1.RayCluster) *corev1ac.ServiceApplyConfig
389
385
).
390
386
WithSelector (map [string ]string {"ray.io/cluster" : cluster .Name , "ray.io/node-type" : "head" }),
391
387
).
392
- WithOwnerReferences (
393
- metav1ac .OwnerReference ().WithUID (cluster .UID ).WithName (cluster .Name ).WithKind (cluster .Kind ).WithAPIVersion (cluster .APIVersion ).WithController (true ),
394
- )
388
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
395
389
}
396
390
397
391
func oauthSecretNameFromCluster (cluster * rayv1.RayCluster ) string {
@@ -408,9 +402,7 @@ func desiredOAuthSecret(cluster *rayv1.RayCluster, cookieSalt string) *corev1ac.
408
402
return corev1ac .Secret (oauthSecretNameFromCluster (cluster ), cluster .Namespace ).
409
403
WithLabels (map [string ]string {RayClusterNameLabel : cluster .Name }).
410
404
WithStringData (map [string ]string {"cookie_secret" : cookieSecret }).
411
- WithOwnerReferences (
412
- metav1ac .OwnerReference ().WithUID (cluster .UID ).WithName (cluster .Name ).WithKind (cluster .Kind ).WithAPIVersion (cluster .APIVersion ).WithController (true ),
413
- )
405
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
414
406
}
415
407
416
408
func caSecretNameFromCluster (cluster * rayv1.RayCluster ) string {
@@ -424,12 +416,7 @@ func desiredCASecret(cluster *rayv1.RayCluster, key, cert []byte) *corev1ac.Secr
424
416
CAPrivateKeyKey : key ,
425
417
CACertKey : cert ,
426
418
}).
427
- WithOwnerReferences (metav1ac .OwnerReference ().
428
- WithUID (cluster .UID ).
429
- WithName (cluster .Name ).
430
- WithKind (cluster .Kind ).
431
- WithAPIVersion (cluster .APIVersion ).
432
- WithController (true ))
419
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
433
420
}
434
421
435
422
func generateCACertificate () ([]byte , []byte , error ) {
@@ -487,9 +474,7 @@ func desiredWorkersNetworkPolicy(cluster *rayv1.RayCluster) *networkingv1ac.Netw
487
474
),
488
475
),
489
476
).
490
- WithOwnerReferences (
491
- metav1ac .OwnerReference ().WithUID (cluster .UID ).WithName (cluster .Name ).WithKind (cluster .Kind ).WithAPIVersion (cluster .APIVersion ).WithController (true ),
492
- )
477
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
493
478
}
494
479
495
480
func desiredHeadNetworkPolicy (cluster * rayv1.RayCluster , cfg * config.KubeRayConfiguration , kubeRayNamespaces []string ) * networkingv1ac.NetworkPolicyApplyConfiguration {
@@ -545,9 +530,7 @@ func desiredHeadNetworkPolicy(cluster *rayv1.RayCluster, cfg *config.KubeRayConf
545
530
),
546
531
),
547
532
).
548
- WithOwnerReferences (
549
- metav1ac .OwnerReference ().WithUID (cluster .UID ).WithName (cluster .Name ).WithKind (cluster .Kind ).WithAPIVersion (cluster .APIVersion ).WithController (true ),
550
- )
533
+ WithOwnerReferences (ownerRefForRayCluster (cluster ))
551
534
}
552
535
553
536
func (r * RayClusterReconciler ) deleteHeadPodIfMissingImagePullSecrets (ctx context.Context , cluster * rayv1.RayCluster ) error {
0 commit comments