mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-08 01:40:31 +00:00
Restrict supported volume backings in prebootstrap
This commit is contained in:
parent
0fac91c2fc
commit
6df7469614
1 changed files with 11 additions and 1 deletions
|
@ -3,6 +3,16 @@
|
||||||
"title": "Prebootstrapped plugin manifest",
|
"title": "Prebootstrapped plugin manifest",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"volume": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"backing": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["raw", "ebs", "s3", "vdi"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["backing"]
|
||||||
|
},
|
||||||
"plugins": {
|
"plugins": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -21,5 +31,5 @@
|
||||||
"required": ["prebootstrapped"]
|
"required": ["prebootstrapped"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": ["plugins"]
|
"required": ["volume", "plugins"]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue