
Ultimate access to all questions.
You are working with multiple configurations for gcloud, and each configuration might have its own Kubernetes Engine cluster settings. You need to check the Kubernetes Engine cluster settings of a particular configuration that is currently inactive. How can you efficiently review these settings using the fewest steps?
A
Use gcloud config configurations describe to review the output.
B
Use gcloud config configurations activate and gcloud config list to review the output.
C
Use kubectl config get-contexts to review the output.
D
Use kubectl config use-context and kubectl config view to review the output.
Explanation:
The correct answer is D: Use kubectl config use-context and kubectl config view to review the output. This method changes the current context to the one you wish to review and then displays the full configuration, including the inactive configurations. This approach provides a clear review with the fewest steps, as supported by the references and expert explanations.