
Ultimate access to all questions.
Your team is developing a web application aimed at a local audience, with plans to deploy it on Kubernetes post-review and approval. Currently, you have a functional Docker file for local use that needs cloud deployment. What is the correct method to deploy this application to Kubernetes? (Select One)
A
Utilize kubectl apply to directly push the Docker file to Kubernetes.
B
Convert the Docker file into a deployment using kubectl convert -f FILENAME and then push it.
C
Build a container image with Docker, upload it to Google Container Registry, and deploy it to Kubernetes using kubectl.
D
Create a container image using Docker, save it to Cloud Storage, and then deploy it to Kubernetes with kubectl.