44ef2a3ec1
The new master branch should point now to rocky. So, HOT templates should specify that they might contain features for rocky release [1] Also, this submission updates the yaml validation to use only latest heat_version alias. There are cases in which we will need to set the version for specific templates i.e. mixed versions, so there is added a variable to assign specific templates to specific heat_version aliases, avoiding the introductions of error by bulk replacing the the old version in new releases. [1]: https://docs.openstack.org/heat/latest/template_guide/hot_spec.html#rocky Change-Id: Ib17526d9cc453516d99d4659ee5fa51a5aa7fb4b
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
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
|
|
ValidateFqdn:
|
|
default: false
|
|
description: Optional validation to ensure FQDN as set by Nova matches the name set in /etc/hosts.
|
|
type: boolean
|
|
ValidateNtp:
|
|
default: true
|
|
description: Validation to ensure at least one time source is accessible.
|
|
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_ntp
|
|
default: {get_param: ValidateNtp}
|
|
config: {get_file: ./validation-scripts/all-nodes.sh}
|
|
|
|
outputs:
|
|
OS::stack_id:
|
|
description: The ID of the AllNodesValidationsImpl resource.
|
|
value: {get_resource: AllNodesValidationsImpl}
|