Which three characteristics are true of Control Plane VMs? (Choose three.)
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.)
Which command provides valid syntax to deploy a vSphere Pod?
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
Which command displays the storage limits that have been set together with the amount of resources consumed?
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