Optional ICMP validation of controllers and gateways

OpenStack Director uses ICMP packets during deployment to test
if overcloud nodes and the gateway are up. Make this validation
optional.

Closes-Bug: 1805703
Change-Id: I47835cae509f14c4ed51f4f6506a73070a125ca4
(cherry picked from commit cb668e6b4c)
This commit is contained in:
Andreas Karis 2018-11-28 16:06:29 -05:00 committed by Emilien Macchi
parent 13b84963ea
commit f56b8b5477
2 changed files with 18 additions and 2 deletions

View File

@ -10,6 +10,14 @@ parameters:
default: ''
description: A string containing a space separated list of IP addresses used to ping test each available network interface.
type: string
ValidateControllersIcmp:
default: true
description: Validation to ensure that all controllers can be reached with ICMP
type: boolean
ValidateGatewaysIcmp:
default: true
description: Validation to ensure that all gateways can be reached with ICMP
type: boolean
ValidateFqdn:
default: false
description: Optional validation to ensure FQDN as set by Nova matches the name set in /etc/hosts.
@ -31,6 +39,10 @@ resources:
default: {get_param: ValidateFqdn}
- name: validate_ntp
default: {get_param: ValidateNtp}
- name: validate_controllers_icmp
default: {get_param: ValidateControllersIcmp}
- name: validate_gateways_icmp
default: {get_param: ValidateGatewaysIcmp}
config: {get_file: ./validation-scripts/all-nodes.sh}
outputs:

View File

@ -110,8 +110,12 @@ function ntp_check() {
fi
}
ping_default_gateways
ping_controller_ips "$ping_test_ips"
if [[ $validate_gateways_icmp == "True" ]];then
ping_default_gateways
fi
if [[ $validate_controllers_icmp == "True" ]];then
ping_controller_ips "$ping_test_ips"
fi
if [[ $validate_fqdn == "True" ]];then
fqdn_check
fi