A developer must fill required fields on a custom resource whose schema is unfamiliar. Which kubectl aid helps document those fields?
Select an answer to reveal the explanation.
Short Explanation
kubectl explain is the in-cluster field guide—point it at kind.spec and it walks the properties. Use it for CRDs the same way you do for Pods. No need to cordon nodes to read a schema.
Full Explanation
kubectl explain reads OpenAPI resource descriptions, including CRD-backed kinds when served, so developers can discover required and optional fields under .spec and nested paths before applying manifests. attach, cordon, and taint workflows are unrelated to schema documentation.