
Ultimate access to all questions.
Your team is developing a web application aimed at a local audience, with plans to deploy it on Kubernetes following review and approval. Currently, you have a functional Docker file for local use that needs to be deployed in the cloud. What is the correct method to deploy this application to Kubernetes?
A
Use kubectl apply to push the Docker file to Kubernetes.
B
Use docker to create a container image, push it to the Google Container Registry, deploy the uploaded image to Kubernetes with kubectl.
C
Use docker to create a container image, save the image to Cloud Storage, deploy the uploaded image to Kubernetes with kubectl.
D
Use kubectl convert -f FILENAME to push the converted Docker file into a deployment.