The old all nodes validation used a bash script to run some basic ping tests after the network setup. It used to be a software config but eventually got baked into the deployment framework. This patch switches to the ansible role implementation and cleans up the old references to the old heat resource. Change-Id: Ia7f055d2c636f950c3fe6d8611834c4ab290f31a Depends-On: https://review.opendev.org/#/c/747466/changes/68/747468/16
parent
b24dd5df62
commit
78ca1fe143
@ -1,45 +0,0 @@
|
||||
heat_template_version: rocky
|
||||
|
||||
description: >
|
||||
Software Config to drive validations that occur on all nodes.
|
||||
Note, you need the heat-config-script element built into your
|
||||
images, due to the script group below.
|
||||
|
||||
parameters:
|
||||
PingTestIps:
|
||||
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.
|
||||
type: boolean
|
||||
|
||||
resources:
|
||||
AllNodesValidationsImpl:
|
||||
type: OS::Heat::SoftwareConfig
|
||||
properties:
|
||||
group: script
|
||||
inputs:
|
||||
- name: ping_test_ips
|
||||
default: {get_param: PingTestIps}
|
||||
- name: validate_fqdn
|
||||
default: {get_param: ValidateFqdn}
|
||||
- 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:
|
||||
OS::stack_id:
|
||||
description: The ID of the AllNodesValidationsImpl resource.
|
||||
value: {get_resource: AllNodesValidationsImpl}
|
@ -1,37 +0,0 @@
|
||||
heat_template_version: rocky
|
||||
|
||||
description: >
|
||||
Software Config to drive validations that occur on all nodes.
|
||||
Note, you need the heat-config-script element built into your
|
||||
images, due to the script group below.
|
||||
|
||||
This implementation of the validations is a noop that always reports success.
|
||||
|
||||
parameters:
|
||||
PingTestIps:
|
||||
default: ''
|
||||
description: A string containing a space separated list of IP addresses used to ping test each available network interface.
|
||||
type: string
|
||||
ValidateFqdn:
|
||||
default: false
|
||||
description: Optional validation to ensure FQDN as set by Nova matches the name set in /etc/hosts.
|
||||
type: boolean
|
||||
|
||||
resources:
|
||||
AllNodesValidationsImpl:
|
||||
type: OS::Heat::SoftwareConfig
|
||||
properties:
|
||||
group: script
|
||||
inputs:
|
||||
- name: ping_test_ips
|
||||
default: {get_param: PingTestIps}
|
||||
- name: validate_fqdn
|
||||
default: {get_param: ValidateFqdn}
|
||||
config: |
|
||||
#!/bin/bash
|
||||
exit 0
|
||||
|
||||
outputs:
|
||||
OS::stack_id:
|
||||
description: The ID of the AllNodesValidationsImpl resource.
|
||||
value: {get_resource: AllNodesValidationsImpl}
|
Loading…
Reference in new issue