28 lines
815 B
JSON
28 lines
815 B
JSON
{
|
|
"variables": {
|
|
"token": null,
|
|
"project": null
|
|
},
|
|
"builders": [{
|
|
"token": "{{ user `token` }}",
|
|
"project": "{{ user `project` }}",
|
|
"type": "hyperone",
|
|
"source_image": "ubuntu",
|
|
"disk_size": 10,
|
|
"vm_type": "a1.nano",
|
|
"chroot_disk": true,
|
|
"chroot_command_wrapper": "sudo {{.Command}}",
|
|
"pre_mount_commands": [
|
|
"parted {{.Device}} mklabel msdos mkpart primary 1M 100% set 1 boot on print",
|
|
"mkfs.ext4 {{.Device}}1"
|
|
],
|
|
"post_mount_commands": [
|
|
"apt-get update",
|
|
"apt-get install debootstrap",
|
|
"debootstrap --arch amd64 bionic {{.MountPath}}"
|
|
],
|
|
"image_name": "packerbats-chroot-{{timestamp}}"
|
|
}],
|
|
"provisioners": []
|
|
}
|