KCNA Exam QuestionsBrowse all questions from this exam

KCNA Exam - Question 24


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

Show Answer
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

2 comments
Sign in to comment
phcunhaOption: A
Mar 22, 2024

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
Aug 28, 2023

A is correct