Bump template version for all templates to "ocata"
[apex-tripleo-heat-templates.git] / all-nodes-validation.yaml
1 heat_template_version: ocata
2
3 description: >
4   Software Config to drive validations that occur on all nodes.
5   Note, you need the heat-config-script element built into your
6   images, due to the script group below.
7
8 parameters:
9   PingTestIps:
10     default: ''
11     description: A string containing a space separated list of IP addresses used to ping test each available network interface.
12     type: string
13
14 resources:
15   AllNodesValidationsImpl:
16     type: OS::Heat::SoftwareConfig
17     properties:
18       group: script
19       inputs:
20         - name: ping_test_ips
21           default: {get_param: PingTestIps}
22       config: {get_file: ./validation-scripts/all-nodes.sh}
23
24 outputs:
25   OS::stack_id:
26     description: The ID of the AllNodesValidationsImpl resource.
27     value: {get_resource: AllNodesValidationsImpl}