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

22 lines
432 B
JSON
Raw Normal View History

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