github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/build/packer/teamcity-agent.json (about) 1 { 2 "variables": { 3 "image_id": "teamcity-agent-{{timestamp}}" 4 }, 5 6 "builders": [{ 7 "type": "googlecompute", 8 "project_id": "cockroach-teamcity", 9 "source_image_family": "ubuntu-1804-lts", 10 "zone": "us-east1-b", 11 "machine_type": "n1-standard-32", 12 "image_name": "{{user `image_id`}}", 13 "image_description": "{{user `image_id`}}", 14 "ssh_username": "packer", 15 "disk_size": 256, 16 "disk_type": "pd-ssd" 17 }], 18 19 "provisioners": [{ 20 "type": "shell", 21 "script": "teamcity-agent.sh", 22 "execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'" 23 }] 24 }