Valid Associate-Cloud-Engineer Dumps shared by ExamDiscuss.com for Helping Passing Associate-Cloud-Engineer Exam! ExamDiscuss.com now offer the newest Associate-Cloud-Engineer exam dumps, the ExamDiscuss.com Associate-Cloud-Engineer exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Associate-Cloud-Engineer dumps with Test Engine here:
You are operating a Google Kubernetes Engine (GKE) cluster for your company where different teams can run non-production workloads. Your Machine Learning (ML) team needs access to Nvidia Tesla P100 GPUs to train their models. You want to minimize effort and cost. What should you do?
Correct Answer: D
This is the most optimal solution. Rather than recreating all nodes, you create a new node pool with GPU enabled. You then modify the pod specification to target particular GPU types by adding node selector to your workloads Pod specification. YOu still have a single cluster so you pay Kubernetes cluster management fee for just one cluster thus minimizing the cost.Ref: https://cloud.google.com/kubernetes-engine/docs/how- to/gpusRef: https://cloud.google.com/kubernetes-engine/pricing Example: * apiVersion: v1 * kind: Pod * metadata: * name: my-gpu-pod * spec: * containers: * name: my-gpu-container * image: nvidia/cuda:10.0-runtime-ubuntu18.04 * command: [/bin/bash] * resources: * limits: * nvidia.com/gpu: 2 * nodeSelector: * cloud.google.com/gke-accelerator: nvidia-tesla-k80 # or nvidia-tesla-p100 or nvidia-tesla-p4 or nvidia- tesla-v100 or nvidia-tesla-t4