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
This commit is contained in:
parent
946c516290
commit
cb668e6b4c
@ -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:
|
||||
|
@ -125,8 +125,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
|
||||
|
Loading…
x
Reference in New Issue
Block a user