VMware Carbon Black Cloud Enterprise EDR (2020) — Question 95
A developer is trying to deploy a Kubernetes Application by using an image from the embedded Registry Service into an existing Namespace within a Supervisor Cluster.
Which three steps must be completed to ensure the deployment is successful? (Choose three.)
Answer options
- A. Include the image://:in the YAML spec.
- B. Run kubectl config use-contextto switch to the correct namespace.
- C. Run kubectl config set-contextto switch to the correct namespace.
- D. Pull the image into the Registry service with docker pull//:.
- E. Include the image:/:in the YAML spec.
- F. Push the image to the Registry service with docker push//:.
Correct answer: A, B, F
Explanation
The correct answer includes A, B, and F. Option A is essential as it specifies the image location in the YAML file. Option B ensures that the developer is working in the right namespace. Option F is necessary to upload the image to the Registry service. Options C, D, and E are incorrect because they either do not change the context properly or do not involve the correct steps needed for deployment.