blob: fd9d39f50f0f58a368f71d0c470d6e1aa7bfc439 [file] [log] [blame]
#!/bin/bash
#
# Creates the compute instance for skia-tracedb.
#
set -x
source vm_config.sh
DEBUGGER_MACHINE_TYPE=n1-highmem-32
DEBUGGER_SOURCE_SNAPSHOT=skia-systemd-pushable-base
DEBUGGER_SCOPES='https://www.googleapis.com/auth/devstorage.full_control'
DEBUGGER_IP_ADDRESS=104.154.112.116
# Create a boot disk from the pushable base snapshot.
gcloud compute --project $PROJECT_ID disks create $INSTANCE_NAME \
--zone $ZONE \
--source-snapshot $DEBUGGER_SOURCE_SNAPSHOT \
--type "pd-standard"
set +e
# The cmd may fail if the disk already exists, which is fine.
# Create a large data disk.
gcloud compute --project $PROJECT_ID disks create $INSTANCE_NAME"-data" \
--size "1000" \
--zone $ZONE \
--type "pd-standard"
set -e
# Create the instance with the two disks attached.
gcloud compute --project $PROJECT_ID instances create $INSTANCE_NAME \
--zone $ZONE \
--machine-type $DEBUGGER_MACHINE_TYPE \
--network "default" \
--maintenance-policy "MIGRATE" \
--scopes $DEBUGGER_SCOPES \
--tags "http-server,https-server" \
--metadata "owner_primary=jcgregorio" \
--disk "name=${INSTANCE_NAME},device-name=${INSTANCE_NAME},mode=rw,boot=yes,auto-delete=yes" \
--disk "name=${INSTANCE_NAME}-data,device-name=${INSTANCE_NAME}-data,mode=rw,boot=no" \
--address=$DEBUGGER_IP_ADDRESS
# The instance believes it is skia-systemd-snapshot-maker until it is rebooted.
echo
echo "===== Rebooting the instance ======"
# Using "shutdown -r +1" rather than "reboot" so that the connection isn't
# terminated immediately, which causes a non-zero exit code.
gcloud compute --project $PROJECT_ID ssh $PROJECT_USER@$INSTANCE_NAME \
--zone $ZONE \
--command "sudo shutdown -r +1" \
|| echo "Reboot failed; please reboot the instance manually."
# Wait for shutdown.
sleep 120
# Wait until the instance is up.
until nc -w 1 -z $DEBUGGER_IP_ADDRESS 22; do
echo "Waiting for VM to come up."
sleep 2
done
gcloud compute copy-files ../common/format_and_mount.sh $PROJECT_USER@$INSTANCE_NAME:/tmp/format_and_mount.sh --zone $ZONE
gcloud compute copy-files ../common/safe_format_and_mount $PROJECT_USER@$INSTANCE_NAME:/tmp/safe_format_and_mount --zone $ZONE
gcloud compute copy-files install.sh $PROJECT_USER@$INSTANCE_NAME:/tmp/install.sh --zone $ZONE
gcloud compute --project $PROJECT_ID ssh $PROJECT_USER@$INSTANCE_NAME \
--zone $ZONE \
--command "/tmp/install.sh" \
|| echo "Installation failure."