Topic 1 Question 247
You have an application running in a production Google Kubernetes Engine (GKE) cluster. You use Cloud Deploy to automatically deploy your application to your production GKE cluster. As part of your development process, you are planning to make frequent changes to the application’s source code and need to select the tools to test the changes before pushing them to your remote source code repository. Your toolset must meet the following requirements: • Test frequent local changes automatically. • Local deployment emulates production deployment.
Which tools should you use to test building and running a container on your laptop using minimal resources?
Docker Compose and dockerd
Terraform and kubeadm
Minikube and Skaffold
kaniko and Tekton
ユーザの投票
コメント(3)
- 正解だと思う選択肢: C
Minikube is a tool that runs a single-node Kubernetes cluster locally on your laptop, allowing you to test and run your application on a simulated production environment. Skaffold is a command line tool that automates the process of building and deploying your application to a local or remote Kubernetes cluster.
Together, Minikube and Skaffold allow you to test your frequent changes locally, with a deployment that emulates a production environment, using minimal resources. Minikube provides the simulated production environment, while Skaffold takes care of building and deploying your application, making the development process smoother and more efficient.
👍 2mrvergara2023/02/04 took my exam yesterday (01-03-2023) and this question was there
👍 2Pime132023/03/02- 正解だと思う選択肢: C
Answer C Minikube is a lightweight Kubernetes implementation that creates a VM on your local machine and deploys a simple cluster containing only one node. Minikube is available for Linux, macOS, and Windows systems.
Skaffold is a tool that handles the workflow for building, pushing and deploying your application. You can use Skaffold to easily configure a local development workspace, streamline your inner development loop, and integrate with other tools such as Kustomize and Helm to help manage your Kubernetes manifests
👍 1TNT872023/01/31
シャッフルモード