+++ This bug was initially created as a clone of Bug #2093444 +++ Description of problem: Per Veritas: we are facing issue in deploying InfoScale using SRO. SRO with these changes does not reconcile the infoscale-vtas SR as we do not specify "ManagementState" to SR spec and thus in create function of predicate, func isSpecialResourceUnmanaged() returns false always which prevents creation of resources/helm chart. func isSpecialResourceUnmanaged(obj client.Object) bool { sr, ok := obj.(*v1beta1.SpecialResource) if !ok { return false } return sr.Spec.ManagementState == operatorv1.Unmanaged } CreateFunc: func(e event.CreateEvent) bool { obj := e.Object if IsSpecialResource(obj) { - return true + return isSpecialResourceUnmanaged(obj) } We anticipate code should return true if isSpecialResourceUnmanaged(obj)=false This change needs to be fixed for successful creation of SR resources. Version-Release number of selected component (if applicable): 4.10 How reproducible: Every time Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Important: OpenShift Container Platform 4.11.0 bug fix and security update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2022:5069