5V0-23.20 · Question #9
Which command provides valid syntax to deploy a vSphere Pod?
The correct answer is C. kubectl apply -c deployment.yaml. 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 Common kubectl commands include the apply, get, describe, and delete commands: - The…
Question
Which command provides valid syntax to deploy a vSphere Pod?
Options
- Atkg apply -c containerName
- Bdocker run containerName
- Ckubectl apply -c deployment.yaml
- Dkubectl apply -t deployment.yaml
How the community answered
(20 responses)- A10% (2)
- B5% (1)
- C80% (16)
- D5% (1)
Explanation
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 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
Topics
Community Discussion
No community discussion yet for this question.