0 votes
in Cloud Computing by

Your team has deployed some applications in GKE.
They asked you how they can view a detailed list of the containers with a few commands.
Which is the right statement to use?

A. gcloud container images describe
B. gcloud container images list
C. kubectl container list images
D. kubectl container list images –detail

1 Answer

0 votes
by

Correct Answer: A
“gcloud container images describe” gives a detailed description of the containers.
Images are managed by GCP, so the correct command is gcloud not kubectl.
B is wrong because “gcloud container images list” gives a simple list of the images, not a detailed one.
C and D are wrong because it is a task managed by GCP, not by Kubernetes directly.

Related questions

0 votes
asked Dec 3, 2021 in Cloud Computing by DavidAnderson
0 votes
asked Dec 1, 2021 in Cloud Computing by DavidAnderson
...