- Home
- All questions
- Question 874
CKA study material · question 874 of 1000
A Service manifest written in JSON has "targetPort": "9376". What is wrong?
Show the answer
Answer: C. The quoted value is a port name, not the number 9376
A quoted numeric port is read as a name, and unless the Pod exposes a port with that name nothing matches — an easily missed misconfiguration the debugging guide calls out.
Source: Debug Services (Kubernetes) — Is the Service defined correctly?