diff --git a/collection-scripts/gather_crs b/collection-scripts/gather_crs index d6e56a9..fc8f35b 100755 --- a/collection-scripts/gather_crs +++ b/collection-scripts/gather_crs @@ -13,8 +13,8 @@ crs=() # Explictly adding rabbit in the grep because its CRD is named with a different domain. # Also adding monitoring.rhobs, because telemetry uses observability-operator # to deploy a `MonitoringStack` for storing and scraping metrics. -# Adding grafana.com and logging.openshift.io because of resources used by telemetry logging. -for i in $(/usr/bin/oc get crd | grep -E "(openstack|rabbitmq|monitoring|grafana|logging\.openshift)\.(org|com|rhobs|io)" | awk '{print $1}') +# Adding grafana.com, observability.openshift.io and logging.openshift.io because of resources used by telemetry logging. +for i in $(/usr/bin/oc get crd | grep -E "(openstack|rabbitmq|monitoring|grafana|observability\.openshift|logging\.openshift)\.(org|com|rhobs|io)" | awk '{print $1}') do crs+=("$i") done