Questão 1
Questão
Which feature in Kubernetes assigns pods to a node at runtime?
Questão 2
Questão
Why do organizations use containers?
Responda
-
to tie infrastructure to the entire guest operating systems with an unshared kernel
-
to build a larger ecosystem of a collection of Docker images in the Docker Hub
-
to build legacy applications to use in macroservices-based architecture
-
to build applications to incorporate a microservices-based architecture
Questão 3
Questão
Which statement is true regarding the difference between a virtual machine and a container?
Responda
-
A container includes all the binaries and libraries that would exist on the OS.
-
A container includes many applications.
-
The terms container and virtual machine are used interchangeably.
-
A container shares the kernel with other containers.
Questão 4
Questão
How would you best describe Kubernetes?
Responda
-
a subscription platform designed to manually deploy scaling and operating applications within containers
-
an open-source platform designed for manually deploying, scaling, and operating application containers
-
a subscription platform designed to automate deploying, scaling, and operating application containers
-
an open-source platform designed to automate deploying, scaling, and operating application containers
Questão 5
Questão
Two features that allow Kubernetes Clusters to scale are _____ and _____.
Responda
-
flexibility; application upgrades
-
registration; discovery
-
persistent storage; modularity
-
scalability; availability
Questão 6
Questão
In a Kubernetes model, what is the simplest unit that you can interact with that represents one running process in your cluster?
Responda
-
a container
-
a kublete
-
a pod
-
a node
Questão 7
Questão
Where do applications operate within Kubernetes?
Responda
-
Worker nodes
-
Scheduler
-
API Server
-
Pods
Questão 8
Questão
Review the Kubernetes architecture in the image below. Which process handles load balancing, network routing, and connection forwarding for applications?
Questão 9
Questão
When a pod has been scheduled on a node, and all of its containers are created, which pod life cycle is represented?
Responda
-
Succeeded
-
Running
-
Pending
-
Failed
Questão 10
Questão
Why will you create deployments more than anything else?
Responda
-
Most applications require scaling deployments.
-
Most applications are package deployments.
-
Most deployments are scaling a ReplicaSet.
-
Most deployments are package applications.
Questão 11
Questão
In which scenario would using namespaces be a great concept?
Responda
-
in a large enterprise where there is one team and many users
-
in a small organization where there are many teams with one user
-
in a large enterprise where there are many users and teams
-
in a small organization where there is one team and one user
Questão 12
Questão
What is the purpose of the Podspec YAML file?
Responda
-
The kubelet ensures that the containers described in the Podspecs are running and healthy.
-
The kubelet uses the Podspecs to ensure the health of containers running on the node that were not created by the API server.
-
The API server uses the Podspecs to deploy containers to worker nodes.
Questão 13
Questão
How can you verify that Minikube and VirtualBox are talking to each other?
Responda
-
Run the command kubectl get nodes.
-
Run the command kubectl get runs.
-
Run the command kubectl get deployments.
-
Run the command kubectl get services.
Questão 14
Questão
Which resource or resources are created in Kubernetes after creating an application resource?
Questão 15
Questão
How can you combine the deployment and the service yaml into a single yaml file?
Responda
-
Run the command vi helloworld-service.yml.
-
Run the command vi helloworld-all.yml.
-
Run the command vi helloworld-deployment.yml.
-
Run the command vi helloworld-run.yml.
Questão 16
Questão
If you are in Windows and using Powershell, the command docker version will check that _____.
Responda
-
the Docker version is out of date
-
a new Docker version is available
-
Docker is up and running
-
Docker has been shut down
Questão 17
Questão
How can you create multiple resources through a single deployment in Kubernetes?
Responda
-
You can only create one resource through one deployment at a time.
-
Use the three-dash notation to combine multiple files into a single YAML file.
-
Use kubectl to combine deployments into a single package.
-
Use an external Python script to package deployment files.
Questão 18
Questão
What happens with the command code chmod +x ./kubectl?
Responda
-
It makes the kubectl password protected.
-
It locks the kubectl.
-
It turns the kubectl open to edit.
-
It makes the kubectl executable.
Questão 19
Questão
Why does Kubernetes use a liveness probe?
Responda
-
so you can run updates on the healthy containers and check on the amount of traffic
-
so you will know when a container is actually ready to start accepting traffic
-
so you can run a periodic check on a container to make sure the container is still healthy
-
so you can run a manual check on a container to make sure the probes are still healthy
Questão 20
Questão
Which two specs can be defined for establishing application health checks?
Responda
-
healthcheckProbe and validationProbe
-
initialDelaySeconds and timeoutSeconds
-
readinessProbe and livenessProbe
Questão 21
Questão
How are labels added to a running pod?
Responda
-
by relabeling
-
by labeling
-
by constructing
-
by overwriting
Questão 22
Questão
What does running the command kubectl get pods --selector dev-lead=karthik,env=staging allow you to do?
Responda
-
add multiple labels and search by one label
-
add one label and search by multiple labels
-
subtract and search by multiple labels
-
add and search by multiple labels
Questão 23
Questão
You have many pods with various labels for each. Which command should be used to find the pods associated with your production environment?