$ ocm list clusters --parameter search="openshift_version like '%'" --columns "id, openshift_version"
ID OPENSHIFT_VERSION
1u5q63je0j29nf2e1hjl6807on87euj4 4.11.0
but this one doesn't work
$ ocm list clusters --parameter search="openshift_version like '4.11%'" --columns "id, openshift_version"
ID OPENSHIFT_VERSION
Potential workaround exists
$ ocm list clusters --parameter search="version.id like 'openshift-v4.11%'" --columns "id, openshift_version"
ID OPENSHIFT_VERSION
1u5q63je0j29nf2e1hjl6807on87euj4 4.11.0
but that's not exactly the same (openshift_version is received from telemetry)
OCM version: 0.1.64
This command works
but this one doesn't work
Potential workaround exists
but that's not exactly the same (
openshift_version
is received from telemetry)