Medium1 markMultiple Choice
GCP ACE · Question 34 · Domain 4.2: Managing GKE resources
Your GKE cluster currently runs on standard e2-medium nodes. Your data science team wants to deploy a new workload to the cluster that requires high-memory machines. You do not want to disrupt the existing workloads.
How should you accommodate this new workload?
Your GKE cluster currently runs on standard e2-medium nodes. Your data science team wants to deploy a new workload to the cluster that requires high-memory machines. You do not want to disrupt the existing workloads.
How should you accommodate this new workload?
Answer options:
A.
Edit the existing node pool and change the machine type to high-memory.
B.
Create a new node pool in the existing cluster using high-memory machine types.
C.
Create a completely new GKE cluster for the data science team.
D.
Use kubectl to manually allocate more memory to the specific pods.
How to approach this question
Understand that GKE clusters can have multiple groups of different machine types.
Full Answer
B.Create a new node pool in the existing cluster using high-memory machine types.✓ Correct
Create a new node pool in the existing cluster using high-memory machine types.
A node pool is a group of nodes within a cluster that all have the same configuration (machine type, disk size, etc.). A single GKE cluster can have multiple node pools. If you need different hardware (like high-memory machines or GPUs) for specific workloads, the best practice is to add a new node pool to the existing cluster and use node selectors/taints to schedule the specific pods onto those nodes.
Common mistakes
Trying to edit the machine type of an existing node pool. Node pool machine types are immutable after creation.
Practice the full GCP Associate Cloud Engineer Practice Exam 7
50 questions · hints · full answers · grading
More questions from this exam
Q01You are starting a new initiative and need to create a new Google Cloud project using the Cloud S...EasyQ02Your company is migrating to Google Cloud and wants to manage user identities centrally. They cur...MediumQ03You have just created a new Google Cloud project and want to deploy a containerized application u...MediumQ04Your finance team wants to perform complex SQL queries on your Google Cloud billing data to analy...MediumQ05You are managing a development project in Google Cloud. You want to ensure that you are notified ...Easy
Expert