Autopilot
is a mode of operation that simplifies cluster management by automating node configuration and management, allowing users to focus on their services and applications
In Autopilot mode, Google manages the nodes and infrastructure, provisioning, configuring, and managing resources and hardware, including scaling.
This mode is designed to provide a hands-off approach to using Kubernetes on Google Cloud, reducing the need for node management operations and maximizing cluster efficiency.
You are assigned to maintain a Google Kubernetes Engine (GKE) cluster named dev that was deployed on Google Cloud. You want to manage the GKE configuration using the command line interface (CLI). You have just downloaded and installed the Cloud SDK. You want to ensure that future CLI commands by default address this specific cluster. What should you do?
A. Use the command gcloud config set container/cluster dev. B. Use the command gcloud container clusters update dev. C. Create a file called gke.default in the ~/.gcloud folder that contains the cluster name. D. Create a file called defaults.json in the ~/.gcloud folder that contains the cluster name.
gcloud
To set a default cluster for gcloud
commands, run the following command:
gcloud config set container/clusterCLUSTER_NAME
Replace CLUSTER_NAME
with the name of your cluster.
You want to permanently delete a Pub/Sub topic managed by Config Connector in your Google Cloud project. What should you do? A. Use kubect1 to delete the topic resource.
B. Use gcloud CLI to delete the topic. C. Use kubect1 to create the label deleted-by-cnrm and to change its value to true for the topic resource. D. Use gcloud CLI to update the topic label managed-by-cnrm to false.