Free VMware 5V0-23.20 Exam Actual Questions

The questions for 5V0-23.20 were last updated On Dec 20, 2024

Question No. 1

Which three characteristics are true of Control Plane VMs? (Choose three.)

Show Answer Hide Answer
Correct Answer: A, B, E

Question No. 2

An administrator is configuring a vSphere with Tanzu Supervisor Cluster with the vSphere networking stack.

Which two minimum requirements must be met for the compute and networking components? (Choose two.)

Show Answer Hide Answer
Correct Answer: D, E

Question No. 3

Which statement is true about Kubernetes Network Policies?

Show Answer Hide Answer
Correct Answer: B

Question No. 4

Which command provides valid syntax to deploy a vSphere Pod?

Show Answer Hide Answer
Correct Answer: C

You can deploy an application on a namespace on a Supervisor Cluster. Once the application is deployed, the respective number of vSphere Pods are created on the Supervisor Cluster within the namespace.

Common kubectl commands include the apply, get, describe, and delete commands:

* The kubectl apply command applies the contents of a YAML file. Typically, this command is used to create a pod or deployment: ---

kubectl apply -f /path/to/my.yaml

* The kubectl get command returns basic information about an object: --- kubectl get pod


Question No. 5

Which command displays the storage limits that have been set together with the amount of resources consumed?

Show Answer Hide Answer
Correct Answer: A

Create the ResourceQuota:

kubectl apply -f https://k8s.io/examples/admin/resource/quota-mem-cpu.yaml --namespace=quota-mem-cpu-example

View detailed information about the ResourceQuota:

kubectl get resourcequota mem-cpu-demo --namespace=quota-mem-cpu-example --output=yaml