-
Bug
-
Resolution: Unresolved
-
Normal
-
None
-
4.15.z, 4.17.z, 4.16.z, 4.18.z
-
Important
-
None
-
Rejected
-
False
-
Description of problem:
Some of the metrics as observed from the OpenShift Console have incorrect values in hosted cluster.
Version-Release number of selected component (if applicable):
4.18.1 [Also observed on other older versions such as 4.16 and 4.14]
How reproducible:
100%
Steps to Reproduce:
1. Install a hosted cluster [preferably ROSA because that's where this is observed] 2. Log into the cluster with any user ID that has the view permissions on the cluster platform metrics 3. Query the metric cluster:ingress_controller_aws_nlb_active:sum and observe that the value is 0 when it must be 1. This is because the cluster has default ingress controller configured with NLB
Actual results:
0
Expected results:
1
Additional info:
$ oc get ingresscontroller/default -n openshift-ingress-operator -o json | jq '.status | {endpointPublishingStrategy}' { "endpointPublishingStrategy": { "loadBalancer": { "dnsManagementPolicy": "Managed", "providerParameters": { "aws": { "networkLoadBalancer": {}, "type": "NLB" }, "type": "AWS" }, "scope": "External" }, "type": "LoadBalancerService" } }