Is your feature request related to a problem? Please describe.
Add a category to all cert-manager CRDs, like cert-manager or similar
Describe the solution you'd like
I was debugging an issue with a certificate not being issues. I don't know all of the cert manager CRs that may be involved, so I wanted to look at all of them. However, I didn't find a good way to do that.
CRD's allow a category to easily enable this. For example:
$ kubectl get istio-io -n istio-system
NAME HOST AGE
destinationrule.networking.istio.io/grafana grafana.istio-system.svc.cluster.local 108m
destinationrule.networking.istio.io/prom istio-prometheus.istio-prometheus.svc.cluster.local 108m
destinationrule.networking.istio.io/tracing tracing.istio-system.svc.cluster.local 108m
NAME AGE
gateway.networking.istio.io/istio-gateway 108m
Describe alternatives you've considered
$ kubectl get crd -oname | grep cert-manager | cut -d/ -f2 | xargs -n1 kubectl get -A
Additional context
Environment details (remove if not applicable):
/kind feature
To add context (as a team of 3 Kubernetes experts just had a TIL moment) It is this fiels: https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#categories
/area deploy
/priority important-soon
/assign
Most helpful comment
To add context (as a team of 3 Kubernetes experts just had a TIL moment) It is this fiels: https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#categories