KCNA Exam QuestionsBrowse all questions from this exam

KCNA Exam - Question 51


Services and Pods in Kubernetes are ______ objects.

Show Answer
Correct Answer: B,D

Services and Pods in Kubernetes are REST objects. In Kubernetes, resources like Services and Pods are represented and managed through the Kubernetes API server using RESTful HTTP methods such as GET, POST, PUT, and DELETE. While configurations for these resources are often written in YAML or JSON formats to define their desired state, the actual objects themselves are REST objects.

Discussion

3 comments
Sign in to comment
pulsefireOption: D
Mar 7, 2024

should be D. REST objects https://docs.openshift.com/container-platform/3.11/architecture/core_concepts/pods_and_services.html#:~:text=Like%20pods%2C%20services%20are%20REST%20objects.

JBanguraOption: D
Mar 22, 2024

It's D

377ecc2Option: D
May 23, 2024

Services and Pods in Kubernetes are: D. REST objects In Kubernetes, resources such as Services and Pods are represented as RESTful objects. This means that they can be accessed and manipulated using HTTP methods such as GET, POST, PUT, and DELETE via the Kubernetes API server. While configurations for Kubernetes resources are often written in YAML or JSON format, these formats are used to define the desired state of the objects rather than representing the nature of the objects themselves