Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

only use the default-dsci applicationsNamespace in openshift #676

Merged
merged 5 commits into from
Apr 1, 2025

Conversation

szaher
Copy link
Member

@szaher szaher commented Mar 27, 2025

the codeflare operator checks for kuberay namespaces to apply network policies so it uses opendatahub DSCInitialization CRD which isn't available on vanilla k8s clusters so added a condition to check for DSCInitialization only when running on openshift

This fixes the gatejobs running the codeflare-sdk repo as the e2e test jobs are failing because DSCInitialization isn't available on kind cluster that is being used for testing.

Issue link

What changes have been made

Verification steps

Checks

  • I've made sure the tests are passing.
  • Testing Strategy
    • Unit tests
    • Manual tests
    • Testing is not required for this change

the codeflare operator checks for kuberay namespaces to apply
network policies so it uses opendatahub DSCInitialization CRD
which isn't available on vanilla k8s clusters so added a condition
to check for DSCInitialization only when running on openshift

This fixes the gatejobs running the codeflare-sdk repo as the e2e
test jobs are failing because DSCInitialization isn't available on
kind cluster that is being used for testing.
@openshift-ci openshift-ci bot requested review from dimakis and Fiona-Waters March 27, 2025 23:48
@szaher szaher changed the title only use the applicationsNamespace in openshift only use the default-dsci applicationsNamespace in openshift Mar 28, 2025
return ctrl.Result{}, err
} else {
kubeRayNamespaces = []string{dsci.Spec.ApplicationsNamespace}
kubeRayNamespaces = []string{"opendatahub", "redhat-ods-applications"}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@szaher We're still passing these namespaces (which I assume are openshift specific) to the network policy creation below. I may be wrong but on a native k8s installation, kuberay won't be installed in either of those namespaces. The OpenShift specific kustomization.yaml points to opendatahub by default but the deployments namespace by default I think is just ray-system. So wouldn't this still set up those network policies to point to ODH/RHOAI namespaces?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link

openshift-ci bot commented Mar 28, 2025

@kryanbeane: changing LGTM is restricted to collaborators

In response to this:

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@chipspeak chipspeak self-requested a review March 28, 2025 11:29
Copy link
Contributor

@chipspeak chipspeak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM Thanks, Saad!

Copy link

@eoinfennessy eoinfennessy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: Small readability change avoiding mutation of kubeRayNamespaces and removing unneeded else block after early return.

Otherwise LGTM.

Comment on lines 274 to 283
kubeRayNamespaces = []string{"opendatahub", "redhat-ods-applications"}

if r.IsOpenShift {
dsci := &dsciv1.DSCInitialization{}
err := r.Client.Get(ctx, client.ObjectKey{Name: "default-dsci"}, dsci)
if err != nil {
return ctrl.Result{}, err
} else {
kubeRayNamespaces = []string{dsci.Spec.ApplicationsNamespace}
}
Copy link

@eoinfennessy eoinfennessy Mar 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
kubeRayNamespaces = []string{"opendatahub", "redhat-ods-applications"}
if r.IsOpenShift {
dsci := &dsciv1.DSCInitialization{}
err := r.Client.Get(ctx, client.ObjectKey{Name: "default-dsci"}, dsci)
if err != nil {
return ctrl.Result{}, err
} else {
kubeRayNamespaces = []string{dsci.Spec.ApplicationsNamespace}
}
var kubeRayNamespaces []string
if r.IsOpenShift {
dsci := &dsciv1.DSCInitialization{}
if err := r.Client.Get(ctx, client.ObjectKey{Name: "default-dsci"}, dsci); err != nil {
return ctrl.Result{}, err
}
kubeRayNamespaces = []string{dsci.Spec.ApplicationsNamespace}
} else {
kubeRayNamespaces = []string{"opendatahub", "redhat-ods-applications"}

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @eoinfennessy actually there is a missing condition that needs to be handled. if the dsci is not found error we use the fall back namespaces if it's available we use it.
otherwise if it's not openshift, I will use the cluster namespace

@openshift-ci openshift-ci bot removed the lgtm label Mar 28, 2025
err := r.Client.Get(ctx, client.ObjectKey{Name: "default-dsci"}, dsci)
if err != nil {
if errors.IsNotFound(err) {
kubeRayNamespaces = []string{"opendatahub", "redhat-ods-applications"}
Copy link

@eoinfennessy eoinfennessy Mar 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This variable always gets changed on line 285, so kubeRayNamespaces will never be set to []string{"opendatahub", "redhat-ods-applications"}.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch, you're right 👍 I'll fix it now

return ctrl.Result{}, err
} else {
kubeRayNamespaces = []string{dsci.Spec.ApplicationsNamespace}
kubeRayNamespaces = []string{cluster.Namespace}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is RayCluster namespace used here for KubeRay namespace?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sutaakar This ns would only be used in a non-OpenShift cluster in which I believe we we would be using ray-system for both, correct me if I'm wrong Saad. If it is OpenShift, the ODH and ODS-App.. namespaces get added to this

Copy link
Contributor

@sutaakar sutaakar Apr 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code implicates that KubeRay operator and RayCluster CR are installed in the same namespace for Kubernetes.
Which IMHO is not correct.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From my perspective we can provide some specific default value (i.e. ray-system) which would be configurable using KubeRayConfiguration so admin can provide own value for custom installation.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sutaakar are you suggesting that we add a new config item to the KubeRayConfiguration to allow users to use their own namespace for ray operator if not default one or is it already available?

checked here https://github.com/project-codeflare/codeflare-operator/blob/main/pkg/config/config.go#L47 has no namespace in the config

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sutaakar would it make sense to work on this config item later as feature not a bug fix?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fine for me to adjust it later

@sutaakar
Copy link
Contributor

sutaakar commented Apr 1, 2025

/lgtm

@sutaakar
Copy link
Contributor

sutaakar commented Apr 1, 2025

/approve

Copy link

openshift-ci bot commented Apr 1, 2025

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: chipspeak, kryanbeane, sutaakar

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci bot added the approved label Apr 1, 2025
@openshift-merge-bot openshift-merge-bot bot merged commit 9d1836d into project-codeflare:main Apr 1, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants