importable Glance metadata definition file

This commit is contained in:
Peter Slovak 2016-05-12 15:10:07 +02:00
parent d51060f00b
commit 0eed479b9b
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{
"namespace": "OS::Nova::LXDFlavor",
"display_name": "LXD properties",
"description": "You can pass several options to the LXD container hypervisor that will affect the container's capabilities.",
"visibility": "public",
"protected": false,
"resource_type_associations": [
{
"name": "OS::Nova::Flavor"
}
],
"properties": {
"lxd:nested_allowed": {
"title": "Allow nested containers",
"description": "Allow or disallow creation of nested containers. If True, you can install and run LXD inside the VM itself and provision another level of containers.",
"type": "string",
"default": false
},
"lxd:privileged_allowed": {
"title": "Create privileged container",
"description": "Containers created as Privileged have elevated powers on the compute host. You should not set this option on containers that you don't fully trust.",
"type": "string",
"default": false
}
}
}