OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 # | |
3 # Create the compute instance for skiamonitor.com. | |
4 # | |
5 | |
6 source ../buildbots/vm_config.sh | |
7 | |
8 # Basically SSH in, update the copy of this repo and jump to a shell script in | |
rmistry
2014/06/16 13:03:37
Please update or delete this comment.
jcgregorio
2014/06/16 13:22:43
Done.
| |
9 # the repo that does the update. | |
10 gcutil --project=$PROJECT_ID addinstance skia-monitoring-$ZONE_TAG \ | |
11 --zone=$ZONE | |
12 --external_ip_address=$MONITORING_IP_ADDRESS \ | |
13 --service_account=$PROJECT_USER \ | |
14 --service_account_scopes="https://www.googleapis.com/auth/devst orage.full_control" \ | |
rmistry
2014/06/16 13:03:37
This constant is specified in vm_config.sh
jcgregorio
2014/06/16 13:22:43
Done.
| |
15 --network=default \ | |
16 --machine_type=n1-standard-1 \ | |
rmistry
2014/06/16 13:03:37
Could you create a constant in vm_config.sh for th
jcgregorio
2014/06/16 13:22:43
Done.
| |
17 --image=backports-debian-7-wheezy-v20140331 \ | |
rmistry
2014/06/16 13:03:38
Could you create a constant in vm_config.sh for th
jcgregorio
2014/06/16 13:22:43
Done.
| |
18 --persistent_boot_disk | |
OLD | NEW |