Remove unused auto_heal in schemas

Change-Id: I20370d37e11cc7b05c8f6025d2d85d1cf7ffc4a1
This commit is contained in:
Feng Shengqin 2018-08-06 09:20:52 +08:00
parent b2e8e142e3
commit 67caab4559
2 changed files with 1 additions and 5 deletions

View File

@ -113,10 +113,6 @@ disk = {
'pattern': '^[0-9]+$' 'pattern': '^[0-9]+$'
} }
auto_heal = {
'type': ['boolean', 'null']
}
workdir = { workdir = {
'type': ['string', 'null'] 'type': ['string', 'null']
} }

View File

@ -32,7 +32,7 @@ CONTAINER_CREATE = {
'image_driver': parameter_types.image_driver, 'image_driver': parameter_types.image_driver,
'security_groups': parameter_types.security_groups, 'security_groups': parameter_types.security_groups,
'runtime': parameter_types.runtime, 'runtime': parameter_types.runtime,
'auto_heal': parameter_types.auto_heal 'auto_heal': parameter_types.boolean
}, },
'required': ['image'], 'required': ['image'],
'additionalProperties': False, 'additionalProperties': False,