diff options
author | Giulio Fidente <gfidente@redhat.com> | 2017-06-22 17:25:03 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2017-07-14 13:44:04 +0200 |
commit | baf6eee5016fac7004a7b8be6f78d4505f347aeb (patch) | |
tree | c0c5504b60b0c234623f601a2ca34fd89c2080d2 /tools | |
parent | aa5c511b827e4c3a7d6cd6021892648093427dbc (diff) |
Adds network/cidr mapping into a new service property
Makes it possible to resolve network subnets within a service
template; the data is transported into a new property ServiceData
wired into every service which hopefully is generic enough to
be extended in the future and transport more data.
Data can be consumed in service templates to set config values
which need to know what is the subnet where a deamon operates (for
example the Ceph Public vs Cluster network).
Change-Id: I28e21c46f1ef609517175f7e7ee19e28d1c0cba2
Diffstat (limited to 'tools')
-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 e9581a2d..66e38ef2 100755 --- a/tools/yaml-validate.py +++ b/tools/yaml-validate.py @@ -18,7 +18,7 @@ import yaml required_params = ['EndpointMap', 'ServiceNetMap', 'DefaultPasswords', - 'RoleName', 'RoleParameters'] + 'RoleName', 'RoleParameters', 'ServiceData'] # NOTE(bnemec): The duplication in this list is intentional. For the # transition to generated environments we have two copies of these files, |