exam questions

Exam KCNA All Questions

View all questions & answers for the KCNA exam

Exam KCNA topic 1 question 71 discussion

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

Which command provides information about the field replicas within the spec resource of a deployment object?

  • A. kubectl get deployment.spec.replicas
  • B. kubectl explain deployment.spec.replicas
  • C. kubectl describe deployment.spec.replicas
  • D. kubectl explain deployment --spec.replicas
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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: B
The correct answer is: B. kubectl explain deployment.spec.replicas Explanation: The command kubectl explain is used to provide detailed information about the fields of Kubernetes objects, including their specifications. The command kubectl explain deployment.spec.replicas specifically provides information about the replicas field within the spec of a deployment object. This is the most appropriate command for getting details about that particular field.
upvoted 1 times
...
EzBL
5 months, 1 week ago
Selected Answer: B
A. kubectl get deployment.spec.replicas: This command attempts to retrieve the value of replicas directly from the deployment resource. However, it's not a standard way to access nested fields like spec.replicas. B. kubectl explain deployment.spec.replicas: This command is used to get documentation or information about a specific field within a Kubernetes resource definition. It will provide details about what the replicas field represents within the spec of a deployment. C. kubectl describe deployment.spec.replicas: This command describes an existing resource, such as a deployment, but it does not specifically explain the meaning or purpose of a field like replicas within the spec. D. kubectl explain deployment --spec.replicas: This command is close but not entirely correct. It attempts to explain a flag --spec.replicas for the kubectl explain command, rather than directly explaining the replicas field within the spec of a deployment.
upvoted 2 times
...
alex78
7 months ago
Selected Answer: B
https://kubernetes.io/docs/reference/kubectl/generated/kubectl_explain/
upvoted 2 times
...
hovnival
7 months ago
Selected Answer: B
guys this one is totally B. kubectl explain deployment.spec.replicas kubectl explain deployment => info about deployment kubectl explain deployment.spec => info about spec in deployment kubectl explain deployment.spec.replicas => info aout replicas in spec in deployment
upvoted 2 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 ...