Merge "Fix wrong time of insecure option"

This commit is contained in:
Jenkins 2016-12-19 11:11:17 +00:00 committed by Gerrit Code Review
commit a8f9bc6b81
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ DEFAULTS = {
'ca_cert': None,
'key_file': None,
'cert_file': None,
'insecure': None,
'insecure': False,
'cluster_domain': 'cluster.local',
},
}
@ -20,7 +20,7 @@ SCHEMA = {
'ca_cert': {'anyOf': [{'type': 'string'}, {'type': 'null'}]},
'key_file': {'anyOf': [{'type': 'string'}, {'type': 'null'}]},
'cert_file': {'anyOf': [{'type': 'string'}, {'type': 'null'}]},
'insecure': {'anyOf': [{'type': 'string'}, {'type': 'null'}]},
'insecure': {'type': 'boolean'},
'cluster_domain': {'type': 'string'},
},
},