Kubernetes – search

kubectl api-resources --verbs=list --namespaced -o name \
  | xargs -n 1 kubectl get --show-kind --ignore-not-found \
  | grep <part-ressource-name>

This command list of the resources of your kubernetes (replace <part-ressource-name> by a part of the ressource name).
The kubectl api-resources enumerates the resource types available in your cluster.

Source: https://www.studytonight.com/post/how-to-list-all-resources-in-a-kubernetes-namespace