diff --git a/pkg/cluster/cluster_config.go b/pkg/cluster/cluster_config.go index f6de3ca02f1..f86377ced5a 100644 --- a/pkg/cluster/cluster_config.go +++ b/pkg/cluster/cluster_config.go @@ -107,7 +107,7 @@ func detectSelfManaged(ctx context.Context, cli client.Client) (Platform, error) // detectManagedRHODS checks if catsrc CR add-on exists ManagedRhods. func detectManagedRHODS(ctx context.Context, cli client.Client) (Platform, error) { catalogSource := &ofapiv1alpha1.CatalogSource{} - err := cli.Get(ctx, client.ObjectKey{Name: "addon-managed-odh-catalog", Namespace: "openshift-marketplace"}, catalogSource) + err := cli.Get(ctx, client.ObjectKey{Name: "addon-managed-odh-catalog", Namespace: "redhat-ods-operator"}, catalogSource) if err != nil { return Unknown, client.IgnoreNotFound(err) }