gansheer opened a new pull request, #4930:
URL: https://github.com/apache/camel-k/pull/4930
Closes #4929
kubectl and oc CLI answers with different result to explain command:
```bash
$"kubectl" explain customresourcedefinitions | grep VERSION | awk '{print
$2}'
v1
$ "oc" explain customresourcedefinitions | grep VERSION | awk '{print $2}'
apiextensions.k8s.io/v1
```
Root:
```bash
$ kubectl explain customresourcedefinitions
GROUP: apiextensions.k8s.io
KIND: CustomResourceDefinition
VERSION: v1
$ oc explain customresourcedefinitions
KIND: CustomResourceDefinition
VERSION: apiextensions.k8s.io/v1
```
**Release Note**
```release-note
fix(e2e): Error in check crd support script
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]