-
Story
-
Resolution: Unresolved
-
Undefined
-
None
-
CL170 - RHOSO18.0-en-1-20241127
-
None
-
False
-
-
False
-
-
-
en-US (English)
Not really relevant to write manually the list of resource when you can get it with the commands we learned before as below.
for resource in $(oc get crd | grep nova| awk -F '.' '{print $1}'); do for resource in Nova NovaAPI NovaCell \
NovaCompute NovaConductor NovaMetadata NovaNoVNCProxy \
NovaScheduler; do echo $resource; oc get $resource; echo; done