mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00

* force kpartx to use synchronous mode, removing sleep(10) * get image configuration, use it during tarball creation and registration * add (non-working, path problems) image registration * add cleaning of image from Google keys and repositories * add NTP server address in manifest * add preference for backport kernels in manifest * disable IPv6 * correctly set host name
43 lines
705 B
JSON
43 lines
705 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "GCE manifest",
|
|
"type": "object",
|
|
"properties": {
|
|
"image": {
|
|
"type": "object",
|
|
"properties": {
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"gcs_destination": {
|
|
"type": "string"
|
|
},
|
|
"gce_project": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"system": {
|
|
"type": "object",
|
|
"properties": {
|
|
"bootloader": {
|
|
"type": "string",
|
|
"enum": ["grub", "extlinux"]
|
|
}
|
|
}
|
|
},
|
|
"volume": {
|
|
"type": "object",
|
|
"properties": {
|
|
"partitions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": { "enum": ["msdos"] }
|
|
}
|
|
}
|
|
},
|
|
"required": ["partitions"]
|
|
}
|
|
}
|
|
}
|
|
|