VMware vSphere with Tanzu Specialist 5V0-23.20 Exam Questions

Page: 1 / 14
Total 124 questions
Question 1

What is required to enable Workload Management?



Answer : A

https://docs.vmware.com/en/VMware-vSphere/7.0/vsphere-esxi-vcenter-server-702-vsphere-with-tanzu-guide.pdf

Configuring Workload Networks You configure one or more workload networks and their respective IP address ranges.

Each workload network is assigned a vSphere Distributed Switch port group and uses a defined IP range to allocate IP addresses to workloads (VMware Tanzu Kubernetes clusters).


Question 2

Which two capabilities are associated with vSphere Pod? (Choose two.)



Answer : C, D

vSphere Pods are only supported on Supervisor Clusters that use NSX-T Data Center as their networking stack.

Resource Management. vSphere DRS handles the placement of vSphere Pods on the Supervisor Cluster.


Question 3

How can you remove unreferenced container images from a project in an embedded Registry Service?



Answer : A

Deleting Artifact:

When an artifact is not referenced by any OCI index, you can delete the artifact freely which will delete its manifest and all associated tags.

When an artifact is referenced by an OCI index, you cannot delete it. In order to delete this artifact, you must first delete all OCI indexes referencing this artifact first, remembering that an artifact can be referenced by multiple parents artifacts pushed onto Harbor by different users. So when deleting an OCI index holding 9 children artifacts not referenced by any other index and 1 child artifact referenced by another index, only 9 out of 10 children artifacts will be deleted.

To delete any artifact in the Harbor interface, click on the artifact and select 'Delete' and confirm.

Not Purge: As a vSphere administrator, you can purge the images for a project in the private image registry by request from DevOps engineers. Purging images from the private image registry deletes all references to the images made by pods, but it does not remove the images from the image registry.


Question 4

The Gold storage policy has been assigned to the Web namespace, and the DevOps engineer wants to place a persistent volume for the Web application in the Gold storage class.

How should this goal be accomplished?



Answer : A

* VM storage policies are translated into Kubernetes storage classes.

* Developers can access all assigned VM storage policies in the form of storage classes. *

Developers cannot manage storage classes.


Question 5

Which requirement is valid for vSphere with Tanzu on vSphere Distributed Switch Network?



Answer : B


Question 6

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



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


Question 7

A developer is trying to deploy a Kubernetes Application into a namespace within a Supervisor Cluster The deployment must utilize the latest assets that have been pushed into the Registry Service.

What should the developer add to the YAML file to ensure that the deployment is successful?



Answer : C

Create an example pod spec with the details about the private registry.

apiVersion: v1

kind: Pod

metadata:

name: <workload-name>

namespace: <kubernetes-namespace>

spec:

containers:

- name: private-reg-container

image: <Registry-IP-Address>/<vsphere-namespace>/<image-name>:<version>

imagePullSecrets:

- name: <registry-secret-name>

Replace<workload-name>with the name of the pod workload.

Replace<kubernetes-namespace>with the Kubernetes namespace in the cluster where the pod will be created. This must be the same Kubernetes namespace where the Registry Service image pull secret is stored in the Tanzu Kubernetes cluster (such as the default namespace).

Replace<Registry-IP-Address>with the IP address for the embedded Harbor Registry instance running on the Supervisor Cluster.

Replace <vsphere-namespace> with the vSphere Namespace where the target Tanzu Kubernetes is provisioned.

Replace<image-name>with an image name of your choice.

Replace<version>with an appropriate version of the image, such as 'latest'.

Replace<registry-secret-name>with the name of the Registry Service image pull secret that you created previously.


Page:    1 / 14   
Total 124 questions