Update the template_version alias for all the templates to pike.
[apex-tripleo-heat-templates.git] / puppet / services / network / contrail-provision.yaml
1 heat_template_version: pike
2
3 description: >
4   Provision Contrail services after deployment
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   RoleName:
17     default: ''
18     description: Role name on which the service is applied
19     type: string
20   RoleParameters:
21     default: {}
22     description: Parameters specific to the role
23     type: json
24   EndpointMap:
25     default: {}
26     description: Mapping of service endpoint -> protocol. Typically set
27                  via parameter_defaults in the resource registry.
28     type: json
29
30 resources:
31   ContrailBase:
32     type: ./contrail-base.yaml
33     properties:
34       ServiceNetMap: {get_param: ServiceNetMap}
35       DefaultPasswords: {get_param: DefaultPasswords}
36       EndpointMap: {get_param: EndpointMap}
37       RoleName: {get_param: RoleName}
38       RoleParameters: {get_param: RoleParameters}
39
40 outputs:
41   role_data:
42     description: Contrail provisioning role
43     value:
44       service_name: contrail_provision
45       config_settings:
46         map_merge:
47           - get_attr: [ContrailBase, role_data, config_settings]
48       step_config: |
49         include ::tripleo::network::contrail::provision