Complete the command to get credentials for your GKE cluster.
gcloud container clusters get-credentials [1] --zone us-central1-a --project my-projectThe get-credentials command requires the cluster name to fetch its credentials.
Complete the kubectl command to list all pods in the default namespace.
kubectl [1] podsThe get command lists resources like pods.
Fix the error in the kubectl command to switch context to your GKE cluster.
kubectl config use-context [1]The context name for GKE clusters follows the format: gke_PROJECT_ZONE_CLUSTER.
Fill both blanks to set the current context namespace to 'development'.
kubectl config set-context [1] --namespace=[2]
set-context --current modifies the current context, and --namespace=development sets the namespace.
Fill all three blanks to create a kubeconfig file for a GKE cluster with authentication.
gcloud container clusters get-credentials [1] --zone [2] --project [3]
This command fetches cluster credentials by specifying the cluster name, zone, and project.