
Ultimate access to all questions.
You are migrating an existing Apache/MySQL/PHP application stack from a single server to Google Kubernetes Engine. You need to decide how to containerize the application while following Google's recommended best practices for high availability. What steps should you take?
A
Package each component in a separate container. Implement readiness and liveness probes.
B
Package the application in a single container. Use a process management tool to manage each component.
C
Package each component in a separate container. Use a script to orchestrate the launch of the components.
D
Package the application in a single container. Use a bash script as an entrypoint to the container, and then spawn each component as a background job.