| OLD | NEW |
| 1 This directory contains scripts to automate the creation, setup and deletion of | 1 This directory contains scripts to automate the creation, setup and deletion of |
| 2 Skia's GCE buildbot machines. | 2 Skia's GCE buildbot machines. |
| 3 | 3 |
| 4 | 4 |
| 5 Directory Contents | 5 Directory Contents |
| 6 ================== | 6 ================== |
| 7 | 7 |
| 8 - vm_config.sh | 8 - vm_config.sh |
| 9 Instantiates constants that are used by the below scripts. | 9 Instantiates constants that are used by the below scripts. |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 - vm_setup_slaves.sh | 35 - vm_setup_slaves.sh |
| 36 Sets up the base image with packages and directories necessary for the buildbot | 36 Sets up the base image with packages and directories necessary for the buildbot |
| 37 slaves. | 37 slaves. |
| 38 | 38 |
| 39 - vm_setup_utils.sh | 39 - vm_setup_utils.sh |
| 40 Utility functions used by vm_setup_master.sh and vm_setup_slaves.sh. | 40 Utility functions used by vm_setup_master.sh and vm_setup_slaves.sh. |
| 41 | 41 |
| 42 - vm_status.sh | 42 - vm_status.sh |
| 43 Outputs the quota and all instances of google.com:skia-buildbots. | 43 Outputs the quota and all instances of google.com:skia-buildbots. |
| 44 | 44 |
| 45 - /compute_engine_scripts/monitoring |
| 46 Setup scripts to create/setup/delete skiamonitor.org, a Graphite server. |
| 47 |
| 45 | 48 |
| 46 How to create a Master Root Disk | 49 How to create a Master Root Disk |
| 47 ================================ | 50 ================================ |
| 48 | 51 |
| 49 Create it with (changing names and zones as required): | 52 Create it with (changing names and zones as required): |
| 50 gcutil --project=google.com:skia-buildbots adddisk private-master-root-a \ | 53 gcutil --project=google.com:skia-buildbots adddisk private-master-root-a \ |
| 51 --source_image=skia-buildbot-image --size_gb=10 --zone=us-central1-a \ | 54 --source_image=skia-buildbot-image --size_gb=10 --zone=us-central1-a \ |
| 52 --service_version=v1beta16 | 55 --service_version=v1beta16 |
| 53 | 56 |
| 54 | 57 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 persistent disks. You will have to recreate the specific slave(s) that crashed. | 100 persistent disks. You will have to recreate the specific slave(s) that crashed. |
| 98 Please run the following: | 101 Please run the following: |
| 99 * Edit vm_config.sh and leave only the VM_SLAVE_NAMES and SLAVE_IP_ADDRESSES you | 102 * Edit vm_config.sh and leave only the VM_SLAVE_NAMES and SLAVE_IP_ADDRESSES you |
| 100 want to recreate. | 103 want to recreate. |
| 101 * ZONE_TAG=a bash vm_delete_slaves.sh | 104 * ZONE_TAG=a bash vm_delete_slaves.sh |
| 102 * ZONE_TAG=a bash vm_create_slaves.sh | 105 * ZONE_TAG=a bash vm_create_slaves.sh |
| 103 * ZONE_TAG=a bash vm_setup_slaves.sh | 106 * ZONE_TAG=a bash vm_setup_slaves.sh |
| 104 | 107 |
| 105 For more details, see https://code.google.com/p/skia/issues/detail?id=1678 | 108 For more details, see https://code.google.com/p/skia/issues/detail?id=1678 |
| 106 ('make GCE buildbot slaves self-recover on boot') | 109 ('make GCE buildbot slaves self-recover on boot') |
| OLD | NEW |