Google Cloud Certified Associate Cloud Engineer Practice

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the Google Cloud Certified Associate Cloud Engineer Exam with flashcards and multiple choice questions. Each question includes hints and explanations to help you study effectively. Get ready to pass your certification exam!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


What is the command to list Kubernetes services?

  1. kubectl get pod

  2. kubectl describe svc

  3. kubectl list services

  4. kubectl get svc

The correct answer is: kubectl get svc

The command to list Kubernetes services is "kubectl get svc". Option A, "kubectl get pod" will list all Kubernetes pods instead of services. Option B, "kubectl describe svc" will provide detailed information on a specific service instance, not a list of services. Option C, "kubectl list services" is an incorrect syntax for a command. Make sure to use "get" to list resources in kubectl.