1
Designing highly scalable, available, and reliable cloud-native applications
hard
An administrator runs the above command to create a Compute Engine instance. However, the nginx service does not start. What is the most likely cause?
Exhibit
Refer to the exhibit.
gcloud compute instances create my-instance \
--zone=us-central1-a \
--machine-type=e2-medium \
--image-family=debian-11 \
--image-project=debian-cloud \
--boot-disk-size=10GB \
--boot-disk-type=pd-standard \
--metadata=startup-script='#!/bin/bash
apt-get update
apt-get install -y nginx
systemctl enable nginx
systemctl start nginx'