From c0967f96f4bd260878b97e574747af447691c9d6 Mon Sep 17 00:00:00 2001 From: Philippe Martin Date: Mon, 4 Oct 2021 10:22:22 +0200 Subject: [PATCH] Do not use SBR anymore --- pkg/kclient/operators.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/kclient/operators.go b/pkg/kclient/operators.go index a0f9ac54052..f520e6e843e 100644 --- a/pkg/kclient/operators.go +++ b/pkg/kclient/operators.go @@ -25,7 +25,9 @@ const ( // IsServiceBindingSupported checks if resource of type service binding request present on the cluster func (c *Client) IsServiceBindingSupported() (bool, error) { - return c.IsResourceSupported("binding.operators.coreos.com", "v1alpha1", "servicebindings") + // Detection of SBO has been removed from issue https://github.com/openshift/odo/issues/5084 + return false, nil + // return c.IsResourceSupported("binding.operators.coreos.com", "v1alpha1", "servicebindings") } // IsCSVSupported checks if resource of type service binding request present on the cluster