Free VMware 5V0-23.20 Exam Actual Questions

The questions for 5V0-23.20 were last updated On Mar 25, 2025

At ValidExamDumps, we consistently monitor updates to the VMware 5V0-23.20 exam questions by VMware. Whenever our team identifies changes in the exam questions,exam objectives, exam focus areas or in exam requirements, We immediately update our exam questions for both PDF and online practice exams. This commitment ensures our customers always have access to the most current and accurate questions. By preparing with these actual questions, our customers can successfully pass the VMware vSphere with Tanzu Specialist exam on their first attempt without needing additional materials or study guides.

Other certification materials providers often include outdated or removed questions by VMware in their VMware 5V0-23.20 exam. These outdated questions lead to customers failing their VMware vSphere with Tanzu Specialist exam. In contrast, we ensure our questions bank includes only precise and up-to-date questions, guaranteeing their presence in your actual exam. Our main priority is your success in the VMware 5V0-23.20 exam, not profiting from selling obsolete exam questions in PDF or Online Practice Test.

 

Question No. 1

Which command will show the Tanzu Kubernetes cluster versions available in the vSphere content library?

Show Answer Hide Answer
Correct Answer: C

kubectl get tanzukubernetesreleases

List available Tanzu Kubernetes releases.

kubectl get tkr

Short form version of the preceding command.

kubectl get tkr v1.17.8---vmware.1-tkg.1.5417466 -o yaml

Provides details on the named Tanzu Kubernetes release.

VMware Tanzu distributes Kubernetes software versions as Tanzu Kubernetes releases. To consume these releases, you configure a vSphere Content Library and synchronize the available releases. You can do so using a subscription-based model, or on-demand. If you want to provision Tanzu Kubernetes in an internet restricted environment, you can create a local library and manually import the releases.


Question No. 2

Which three elements should be configured by a vSphere administrator after creating vSphere Namespace? (Choose three.)

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

Creating a Namespace

A vSphere administrator configures permissions and storage before a namespace can be used:

* Assign edit or view permissions to users. Users must be present in a configured single sign-on (SSO) identity source.

* Must assign a VM storage policy to the namespace.

* Can define resource limits (optional).

* Must add a content library to enable the Tanzu Kubernetes Grid Service.


Question No. 3

Which three roles does the Spherelet perform? (Choose three )

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

Spherelet is a kubelet that is ported natively to ESXi. It allows the ESXi host to become part of a Kubernetes cluster. Spherelet performs the following functions:

* Communicates with the control plane VMs

* Manages node configuration

* Starts vSphere Pods

* Monitors vSphere Pods


Question No. 4

Which two functions are provided by the NSX Container Rug-in (NCP)? (Choose two.)

Show Answer Hide Answer
Correct Answer: A, C

NCP provides the following functionalities:

Automatically creates an NSX-T Data Center logical topology for a Kubernetes cluster, and creates a separate logical network for each Kubernetes namespace.

Implements Kubernetes Ingress with NSX-T layer 7 load balancer

Connects Kubernetes pods to the logical network, and allocates IP and MAC addresses.

Supports network address translation (NAT) and allocates a separate SNAT IP for each Kubernetes namespace.Note:When configuring NAT, the total number of translated IPs cannot exceed 1000.

Implements Kubernetes network policies with NSX-T Data Center distributed firewall.

Implements Kubernetes service of typeClusterIPand service of typeLoadBalancer.


Question No. 5

Which kubectl command is used to list al pods in the current active namespace?

Show Answer Hide Answer
Correct Answer: B

Fetch all Pods in all namespaces using kubectl get pods --all-namespaces

Pods

Shortcode = po

List one or more pods

kubectl get pod

Delete a pod

kubectl delete pod

Display the detailed state of a pods

kubectl describe pod

Create a pod

kubectl create pod

Execute a command against a container in a pod

kubectl exec -c <container_name> <command>

Get interactive shell on a a single-container pod

kubectl exec -it /bin/sh

Display Resource usage (CPU/Memory/Storage) for pods

kubectl top pod

Add or update the annotations of a pod

kubectl annotate pod

Add or update the label of a pod

kubectl label pod