Exam KCNA All QuestionsBrowse all questions from this exam
Question 51

Services and Pods in Kubernetes are ______ objects.

    Correct Answer: 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
pulsefireOption: D

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.

377ecc2Option: D

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

JBanguraOption: D

It's D