Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
When deploying an application to an autoscaled, managed instance group on Compute Engine using Deployment Manager, what is the most efficient method to transfer the application binary to the instance without adding unnecessary complexity?
A
Utilize the startup-script metadata key in the instance template to bootstrap the application during creation.
startup-script
B
Employ the initialize-script metadata key in the instance template for bootstrapping the application, though this is not a valid option.
initialize-script
C
Incorporate Ansible installation via the startup script metadata key in the instance template, then execute a playbook at startup for application installation, adding complexity.
D
Manually install the application by connecting to the instance via SSH after it starts, which is impractical for autoscaled groups.