
Answer-first summary for fast verification
Answer: Minikube and Skaffold
The question requires selecting tools for local testing that emulate the production Kubernetes environment and automate testing with minimal resources. Minikube provides a lightweight local Kubernetes cluster, closely mirroring the production GKE setup. Skaffold automates building and deploying containers upon code changes, enabling frequent local testing. Docker Compose (A) lacks Kubernetes emulation. Terraform and kubeadm (B) focus on infrastructure provisioning, not local iteration. kaniko and Tekton (D) are CI/CD tools, unsuitable for lightweight local workflows. Thus, C is the correct choice.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You have an application running in a production Google Kubernetes Engine (GKE) cluster, with Cloud Deploy handling automated deployments to production. As part of your development workflow, you plan to make frequent changes to the application's source code and need to choose tools for testing these changes locally before pushing them to the remote repository. Your selected tools must:
Which tools should you use to test building and running a container on your laptop with minimal resource consumption?
A
Docker Compose and dockerd
B
Terraform and kubeadm
C
Minikube and Skaffold
D
kaniko and Tekton
No comments yet.