fuel-ccp/fuel_ccp/config/registry.py

24 lines
521 B
Python

DEFAULTS = {
'registry': {
'address': '',
'insecure': False,
'username': '',
'password': '',
'timeout': 300,
},
}
SCHEMA = {
'registry': {
'type': 'object',
'additionalProperties': False,
'properties': {
'address': {'type': 'string'},
'insecure': {'type': 'boolean'},
'username': {'type': 'string'},
'password': {'type': 'string'},
'timeout': {'type': 'integer'},
},
},
}