-
Bug
-
Resolution: Done
-
Critical
-
3.2.0.GA
-
False
-
None
-
False
-
-
Description of problem:
Dev Spaces ServiceMonitor resource showing incorrect NameSpaceSelector it should be the installation namespace but it is taking the CRW operator namespace openshift-workspaces.
Steps to Reproduce
- Install Red Hat OpenShift Dev Spaces
- Check the ServiceMonitor create with it openshift-workspaces-metrics-exporter.
Actual results:
- namespaceSelector has the name of the old CRW operator namespace that is openshift-workspaces
iVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: openshift-workspaces-metrics-exporter namespace: openshift-operators spec: namespaceSelector: matchNames: - openshift-workspaces
Expected results:
- namespaceSelector should have the name of the installation namespace that is openshift-operators
apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor metadata: name: openshift-workspaces-metrics-exporter namespace: openshift-operators spec: namespaceSelector: matchNames: - openshift-operators