Do we need to know all attributes of a component before going to cka exam?

Ankit Kumar:
Do we need to know all attributes of a component before going to cka exam?

Chris Boot:
If you mean e.g. whether you have to know how to construct pods, deployments, ingresses, etc… then no. You can use kubectl explain <kind> and dig down with that (e.g. kubectl explain pod.spec.containers.securityContext). You can also access the Kubernetes documentation on the web.

Ankit Kumar:
Thanks @Chris Boot