bootstrap-vz/bootstrapvz/providers/gce/manifest-schema.json
Tomasz Rybak b327823261 Add Google Cloud Engine (GCE) provider:
* 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
2014-05-03 14:25:54 +02:00

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"]
}
}
}