exam questions

Exam KCNA All Questions

View all questions & answers for the KCNA exam

Exam KCNA topic 1 question 113 discussion

Actual exam question from Linux Foundation's KCNA
Question #: 113
Topic #: 1
[All KCNA Questions]

How many different Kubernetes service types can you define?

  • A. 2
  • B. 3
  • C. 4
  • D. 5
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
miskill
2 months, 1 week ago
Selected Answer: C
The correct answer is: C. 4 Explanation: Kubernetes supports four different service types: ClusterIP: The default service type, which exposes the service on a cluster-internal IP. It is accessible only within the cluster. NodePort: Exposes the service on each node's IP at a static port. This makes the service accessible outside the cluster via <NodeIP>:<NodePort>. LoadBalancer: Exposes the service externally using a cloud provider's load balancer. This service type automatically provisions a load balancer for the service. ExternalName: Maps the service to a DNS name by returning a CNAME record, redirecting traffic to an external service outside the Kubernetes cluster. These are the four primary service types in Kubernetes.
upvoted 2 times
...
jafg22
2 months, 2 weeks ago
The correct answer its C ClusterIP: The default type, exposes the Service on a cluster-internal IP. NodePort: Exposes the Service on each Node’s IP at a static port. LoadBalancer: Exposes the Service externally using a cloud provider's load balancer. ExternalName: Maps a Service to an external DNS name.
upvoted 1 times
...
Darkren4eveR
2 months, 3 weeks ago
c https://kubernetes.io/docs/concepts/services-networking/service/
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...