mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-07 17:40:30 +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",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"volume": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"backing": {
|
||||
"type": "string",
|
||||
"enum": ["raw", "ebs", "s3", "vdi"]
|
||||
}
|
||||
},
|
||||
"required": ["backing"]
|
||||
},
|
||||
"plugins": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -21,5 +31,5 @@
|
|||
"required": ["prebootstrapped"]
|
||||
}
|
||||
},
|
||||
"required": ["plugins"]
|
||||
"required": ["volume", "plugins"]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue