Merge "Ensure default value is set, and is "False""

This commit is contained in:
Zuul 2019-03-08 22:52:54 +00:00 committed by Gerrit Code Review
commit 5cb75351ca
3 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@
gather_facts: false
roles:
- {role: validate-tempest, when: run_tempest|bool}
- {role: validate-services, when: validate_services|bool}
- {role: validate-services, when: validate_services|bool|default(false)}
tags:
- standalone

View File

@ -18,4 +18,4 @@
roles:
- {role: validate-simple, when: test_ping|bool}
- {role: validate-tempest, when: run_tempest|bool}
- {role: validate-services, when: validate_services|bool}
- {role: validate-services, when: validate_services|bool|default(false)}

View File

@ -45,4 +45,4 @@
- undercloud-validate
gather_facts: false
roles:
- {role: validate-services, when: validate_services|bool}
- {role: validate-services, when: validate_services|bool|default(false)}