diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-08-20 16:29:02 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-08-20 16:29:02 +0000 |
commit | 6c537d2005b8cb5b25f63722376fca08471987ac (patch) | |
tree | 0a45528088c74cd984ba2359738c52a30ecc7ffa /tools/yaml-validate.py | |
parent | 9b2281f8de84e730910342d40b12e37886203087 (diff) | |
parent | 3b62761d2fc25abef4ca98e9d5863197c4497b85 (diff) |
Merge "Add DefaultPasswords to composable services"
Diffstat (limited to 'tools/yaml-validate.py')
-rwxr-xr-x | tools/yaml-validate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/yaml-validate.py b/tools/yaml-validate.py index 2a6c4b3b..d75aeb4f 100755 --- a/tools/yaml-validate.py +++ b/tools/yaml-validate.py @@ -40,7 +40,7 @@ def validate_service(filename, tpl): % filename) return 1 if 'parameters' in tpl: - required_params = ['EndpointMap', 'ServiceNetMap'] + required_params = ['EndpointMap', 'ServiceNetMap', 'DefaultPasswords'] for param in required_params: if param not in tpl['parameters']: print('ERROR: parameter %s is required for %s.' |