Skip to content

Commit 280b766

Browse files
keepin it DRY with a helper function 4 owner ref
Signed-off-by: Kevin <[email protected]>
1 parent ca81c46 commit 280b766

File tree

2 files changed

+19
-39
lines changed

2 files changed

+19
-39
lines changed

pkg/controllers/raycluster_controller.go

+7-24
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,7 @@ func desiredServiceAccount(cluster *rayv1.RayCluster) *corev1ac.ServiceAccountAp
337337
`{"kind":"OAuthRedirectReference","apiVersion":"v1",` +
338338
`"reference":{"kind":"Route","name":"` + dashboardNameFromCluster(cluster) + `"}}`,
339339
}).
340-
WithOwnerReferences(
341-
metav1ac.OwnerReference().WithUID(cluster.UID).WithName(cluster.Name).WithKind(cluster.Kind).WithAPIVersion(cluster.APIVersion).WithController(true),
342-
)
340+
WithOwnerReferences(ownerRefForRayCluster(cluster))
343341
}
344342

345343
func dashboardNameFromCluster(cluster *rayv1.RayCluster) string {
@@ -361,9 +359,7 @@ func desiredClusterRoute(cluster *rayv1.RayCluster) *routev1ac.RouteApplyConfigu
361359
WithTermination(routev1.TLSTerminationReencrypt),
362360
),
363361
).
364-
WithOwnerReferences(
365-
metav1ac.OwnerReference().WithUID(cluster.UID).WithName(cluster.Name).WithKind(cluster.Kind).WithAPIVersion(cluster.APIVersion).WithController(true),
366-
)
362+
WithOwnerReferences(ownerRefForRayCluster(cluster))
367363
}
368364

369365
func oauthServiceNameFromCluster(cluster *rayv1.RayCluster) string {
@@ -389,9 +385,7 @@ func desiredOAuthService(cluster *rayv1.RayCluster) *corev1ac.ServiceApplyConfig
389385
).
390386
WithSelector(map[string]string{"ray.io/cluster": cluster.Name, "ray.io/node-type": "head"}),
391387
).
392-
WithOwnerReferences(
393-
metav1ac.OwnerReference().WithUID(cluster.UID).WithName(cluster.Name).WithKind(cluster.Kind).WithAPIVersion(cluster.APIVersion).WithController(true),
394-
)
388+
WithOwnerReferences(ownerRefForRayCluster(cluster))
395389
}
396390

397391
func oauthSecretNameFromCluster(cluster *rayv1.RayCluster) string {
@@ -408,9 +402,7 @@ func desiredOAuthSecret(cluster *rayv1.RayCluster, cookieSalt string) *corev1ac.
408402
return corev1ac.Secret(oauthSecretNameFromCluster(cluster), cluster.Namespace).
409403
WithLabels(map[string]string{RayClusterNameLabel: cluster.Name}).
410404
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))
414406
}
415407

416408
func caSecretNameFromCluster(cluster *rayv1.RayCluster) string {
@@ -424,12 +416,7 @@ func desiredCASecret(cluster *rayv1.RayCluster, key, cert []byte) *corev1ac.Secr
424416
CAPrivateKeyKey: key,
425417
CACertKey: cert,
426418
}).
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))
433420
}
434421

435422
func generateCACertificate() ([]byte, []byte, error) {
@@ -487,9 +474,7 @@ func desiredWorkersNetworkPolicy(cluster *rayv1.RayCluster) *networkingv1ac.Netw
487474
),
488475
),
489476
).
490-
WithOwnerReferences(
491-
metav1ac.OwnerReference().WithUID(cluster.UID).WithName(cluster.Name).WithKind(cluster.Kind).WithAPIVersion(cluster.APIVersion).WithController(true),
492-
)
477+
WithOwnerReferences(ownerRefForRayCluster(cluster))
493478
}
494479

495480
func desiredHeadNetworkPolicy(cluster *rayv1.RayCluster, cfg *config.KubeRayConfiguration, kubeRayNamespaces []string) *networkingv1ac.NetworkPolicyApplyConfiguration {
@@ -545,9 +530,7 @@ func desiredHeadNetworkPolicy(cluster *rayv1.RayCluster, cfg *config.KubeRayConf
545530
),
546531
),
547532
).
548-
WithOwnerReferences(
549-
metav1ac.OwnerReference().WithUID(cluster.UID).WithName(cluster.Name).WithKind(cluster.Kind).WithAPIVersion(cluster.APIVersion).WithController(true),
550-
)
533+
WithOwnerReferences(ownerRefForRayCluster(cluster))
551534
}
552535

553536
func (r *RayClusterReconciler) deleteHeadPodIfMissingImagePullSecrets(ctx context.Context, cluster *rayv1.RayCluster) error {

pkg/controllers/support.go

+12-15
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ func desiredRayClientRoute(cluster *rayv1.RayCluster) *routeapply.RouteApplyConf
4242
WithPort(routeapply.RoutePort().WithTargetPort(intstr.FromString("client"))).
4343
WithTLS(routeapply.TLSConfig().WithTermination("passthrough")),
4444
).
45-
WithOwnerReferences(
46-
v1.OwnerReference().WithUID(cluster.UID).WithName(cluster.Name).WithKind(cluster.Kind).WithAPIVersion(cluster.APIVersion).WithController(true),
47-
)
45+
WithOwnerReferences(ownerRefForRayCluster(cluster))
4846
}
4947

5048
func desiredRayClientIngress(cluster *rayv1.RayCluster, ingressHost string) *networkingv1ac.IngressApplyConfiguration {
@@ -55,12 +53,7 @@ func desiredRayClientIngress(cluster *rayv1.RayCluster, ingressHost string) *net
5553
"nginx.ingress.kubernetes.io/ssl-redirect": "true",
5654
"nginx.ingress.kubernetes.io/ssl-passthrough": "true",
5755
}).
58-
WithOwnerReferences(v1.OwnerReference().
59-
WithAPIVersion(cluster.APIVersion).
60-
WithKind(cluster.Kind).
61-
WithName(cluster.Name).
62-
WithUID(cluster.UID).
63-
WithController(true)).
56+
WithOwnerReferences(ownerRefForRayCluster(cluster)).
6457
WithSpec(networkingv1ac.IngressSpec().
6558
WithIngressClassName("nginx").
6659
WithRules(networkingv1ac.IngressRule().
@@ -86,12 +79,7 @@ func desiredRayClientIngress(cluster *rayv1.RayCluster, ingressHost string) *net
8679
func desiredClusterIngress(cluster *rayv1.RayCluster, ingressHost string) *networkingv1ac.IngressApplyConfiguration {
8780
return networkingv1ac.Ingress(dashboardNameFromCluster(cluster), cluster.Namespace).
8881
WithLabels(map[string]string{RayClusterNameLabel: cluster.Name}).
89-
WithOwnerReferences(v1.OwnerReference().
90-
WithAPIVersion(cluster.APIVersion).
91-
WithKind(cluster.Kind).
92-
WithName(cluster.Name).
93-
WithUID(cluster.UID).
94-
WithController(true)).
82+
WithOwnerReferences(ownerRefForRayCluster(cluster)).
9583
WithSpec(networkingv1ac.IngressSpec().
9684
WithRules(networkingv1ac.IngressRule().
9785
WithHost(ingressHost). // Full Hostname
@@ -212,3 +200,12 @@ func (l logSink) WithName(name string) logr.LogSink {
212200
func FilteredLogger(logger logr.Logger) logr.Logger {
213201
return logger.WithSink(logSink{logger.GetSink()})
214202
}
203+
204+
func ownerRefForRayCluster(cluster *rayv1.RayCluster) *v1.OwnerReferenceApplyConfiguration {
205+
return v1.OwnerReference().
206+
WithAPIVersion(cluster.APIVersion).
207+
WithKind(cluster.Kind).
208+
WithName(cluster.Name).
209+
WithUID(cluster.UID).
210+
WithController(true)
211+
}

0 commit comments

Comments
 (0)