ccp.runtimes.lxd/focal-fossa/packer.json

16 lines
327 B
JSON
Raw Permalink Normal View History

2022-08-03 14:54:08 +02:00
{
"builders": [
{
2022-08-30 16:41:39 +02:00
"type": "lxd",
"name": "{{ user `name`}}",
2022-08-03 14:54:08 +02:00
"image": "ubuntu:20.04",
2022-09-13 16:49:09 +02:00
"output_image": "{{ user `name` }}",
2022-08-03 14:54:08 +02:00
"publish_properties": {
"description": "{{ user `description`}}"
2022-08-30 16:41:39 +02:00
}
2022-08-30 16:44:09 +02:00
}
2022-08-03 14:54:08 +02:00
],
"provisioners": [],
"post-processors": []
}