-
Task
-
Resolution: Done
-
Normal
-
None
-
None
-
None
-
3
-
False
-
-
False
-
Not Selected
-
rhos-conplat-core-operators
-
-
-
Core Operators Sprint 2026 1
-
1
Goal:
When deploy FR2 in test automation, the ctlplane does not reach ready, since telemetry is not configured properly.
Deployment still ends, but the ctlplane does not reach ready. the following steps are required
$ oc get osctlplane -n openstack
NAME STATUS MESSAGE
controlplane False OpenStackControlPlane Telemetry in progress
$ oc patch osctlplane -n openstack controlplane --type=merge -p '
{
"spec": {
"telemetry": {
"template": {
"metricStorage": {
"customMonitoringStack": {
"prometheusConfig": {
"persistentVolumeClaim": {
"resources": {
"requests": {
"storage": "10G"
}
},
"storageClassName": "local-storage"
}
}
}
}
}
}
}
}
'
$ oc delete pvc prometheus-metric-storage-db-prometheus-metric-storage-0 -n openstack
# wait for the ctlplane to be ready
$ oc wait -n openstack osctlplane --for condition=Ready controlplane --timeout=20m
Acceptance Criteria:
A list of verification conditions, successful functional tests, or expected outcomes in order to declare this story/task successfully completed.
- when deploy FR2 as mentioned in https://issues.redhat.com/browse/OSPRH-21916, the ctlplane must reach ready state without manual patching