bootstrap-vz/bootstrapvz/providers/azure/manifest-schema.json
Olivier Sallou b04bda220a Download Waagent archive instead of using git repo.
Specify the version in the manifest (system/waagent section)
Add possibility to specify waagent conf file in manifest (system/waagent section)
Update documentation to match changes

Use log_check_call instead of log_call

refactor test on dictionary key
2014-04-09 18:03:29 +02:00

45 lines
793 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Azure manifest",
"type": "object",
"properties": {
"system": {
"type": "object",
"properties": {
"bootloader": {
"type": "string",
"enum": ["grub", "extlinux"]
},
"waagent": {
"type": "object",
"properties": {
"conf": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": ["version"]
}
},
"required": ["waagent"]
},
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["raw"]
},
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "msdos", "gpt"] }
}
}
},
"required": ["backing"]
}
}
}