bootstrap-vz/manifests/gce.manifest.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

46 lines
892 B
JSON

{
"provider": "gce",
"bootstrapper": {
"workspace": "/target"
},
"image": {
"name": "disk",
"description": "Debian {system.release} {system.architecture}"
},
"system": {
"release": "wheezy",
"sections": ["main", "contrib", "non-free"],
"architecture": "amd64",
"bootloader": "grub",
"timezone": "UTC",
"locale": "en_US",
"charmap": "UTF-8"
},
"packages": {
"mirror": "http://gce_debian_mirror.storage.googleapis.com/",
"preferences": {
"backport-kernel": [
{
"package": "linux-image-* initramfs-tools",
"pin": "release n=wheezy-backports",
"pin-priority": 500
}
]
}
},
"plugins": {
"ntp": {
"servers": ["metadata.google.internal"]
}
},
"volume": {
"backing": "raw",
"partitions": {
"type": "msdos",
"root": {
"size": "10GiB",
"filesystem": "ext4"
}
}
}
}