Omit hiera YAML validations for external deploys

Closes-bug: #1765641

Change-Id: I3e98521f6396acc9e4e1a7b32faec85e988ab0fe
Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
This commit is contained in:
Bogdan Dobrelya 2018-04-20 11:11:19 +02:00
parent 4948725c3d
commit 68c60892a1
1 changed files with 4 additions and 0 deletions

View File

@ -726,6 +726,10 @@ def validate_service_hiera_interpol(f, tpl):
'ServiceNetMap',
search_keynames, enter_lists)
for path in values_found:
# Omit if external deploy tasks in the path
if 'external_deploy_tasks' in path:
continue
# Omit if not a part of {get_param: [ServiceNetMap ...
if not enter_lists and path[-1] != 'get_param':
continue