Exam KCNA All QuestionsBrowse all questions from this exam
Question 24

We can extend the Kubernetes API with Kubernetes API Aggregation Layer and CRDs. What is CRD?

    Correct Answer: A

    CRD stands for Custom Resource Definition. It is a Kubernetes extension mechanism that allows users to define their custom resources and their schema, extending the Kubernetes API. These custom resources can be managed and interacted with using standard Kubernetes API operations, just like built-in resources such as Pods or Deployments.

Discussion
phcunhaOption: A

A. Custom Resource Definition Explanation: CRD stands for Custom Resource Definition. It's a Kubernetes extension mechanism that allows users to define their custom resources and their schema, effectively extending the Kubernetes API. Once defined, these custom resources can be managed and interacted with using standard Kubernetes API operations, just like built-in resources like Pods or Deployments. An analogy for CRD could be creating a new type of item in a game. In a video game, developers might introduce custom items that players can collect or use within the game world. These custom items have their unique properties and behaviors, defined by the game developers. Similarly, with CRDs, Kubernetes users can define custom resources with specific properties and behaviors tailored to their application needs.

nvtienanhOption: A

A is correct