mirror of https://github.com/hashicorp/packer
parent
c2b39b8b3b
commit
61772d715d
@ -0,0 +1,27 @@
|
||||
{
|
||||
"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": []
|
||||
}
|
||||
Loading…
Reference in new issue