Skip to content

Commit c583416

Browse files
committed
use ray-system as default ray namespace
Signed-off-by: Saad Zaher <[email protected]>
1 parent 1146637 commit c583416

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

pkg/controllers/constants.go

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package controllers
2+
3+
const (
4+
kubeRayDefaultNamespace = "ray-system"
5+
kubeRayOperatorNamespace = "kuberay-operator"
6+
defaultDSCINamespace = "default-dsci"
7+
odhNamespace = "opendatahub"
8+
rhdsAppsNamespace = "redhat-ods-applications"
9+
)

pkg/controllers/raycluster_controller.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -271,14 +271,14 @@ func (r *RayClusterReconciler) Reconcile(ctx context.Context, req ctrl.Request)
271271
// - Or fallback to the well-known defaults
272272
// add check if running on openshift or vanilla kubernetes
273273
var kubeRayNamespaces []string
274-
kubeRayNamespaces = []string{cluster.Namespace}
274+
kubeRayNamespaces = []string{kubeRayDefaultNamespace}
275275

276276
if r.IsOpenShift {
277277
dsci := &dsciv1.DSCInitialization{}
278278

279-
err := r.Client.Get(ctx, client.ObjectKey{Name: "default-dsci"}, dsci)
279+
err := r.Client.Get(ctx, client.ObjectKey{Name: defaultDSCINamespace}, dsci)
280280
if errors.IsNotFound(err) {
281-
kubeRayNamespaces = []string{"opendatahub", "redhat-ods-applications"}
281+
kubeRayNamespaces = []string{odhNamespace, rhdsAppsNamespace}
282282
} else if err != nil {
283283
return ctrl.Result{}, err
284284
} else {
@@ -557,7 +557,7 @@ func desiredHeadNetworkPolicy(cluster *rayv1.RayCluster, cfg *config.KubeRayConf
557557
networkingv1ac.NetworkPolicyIngressRule().
558558
WithFrom(
559559
networkingv1ac.NetworkPolicyPeer().WithPodSelector(metav1ac.LabelSelector().
560-
WithMatchLabels(map[string]string{"app.kubernetes.io/component": "kuberay-operator"})).
560+
WithMatchLabels(map[string]string{"app.kubernetes.io/component": kubeRayOperatorNamespace})).
561561
WithNamespaceSelector(metav1ac.LabelSelector().
562562
WithMatchExpressions(metav1ac.LabelSelectorRequirement().
563563
WithKey(corev1.LabelMetadataName).

0 commit comments

Comments
 (0)