Change flat network name for nosdn fdio scenario
[apex-tripleo-heat-templates.git] / puppet / services / network / contrail-config.yaml
1 heat_template_version: pike
2
3 description: >
4   Contrail Config service deployment using puppet, this YAML file
5   creates the interface between the HOT template
6   and the puppet manifest that actually installs
7   and configures Contrail Config.
8
9 parameters:
10   ServiceData:
11     default: {}
12     description: Dictionary packing service data
13     type: json
14   ServiceNetMap:
15     default: {}
16     description: Mapping of service_name -> network name. Typically set
17                  via parameter_defaults in the resource registry.  This
18                  mapping overrides those in ServiceNetMapDefaults.
19     type: json
20   DefaultPasswords:
21     default: {}
22     type: json
23   RoleName:
24     default: ''
25     description: Role name on which the service is applied
26     type: string
27   RoleParameters:
28     default: {}
29     description: Parameters specific to the role
30     type: json
31   EndpointMap:
32     default: {}
33     description: Mapping of service endpoint -> protocol. Typically set
34                  via parameter_defaults in the resource registry.
35     type: json
36   ContrailConfigIfmapUserName:
37     description: Ifmap user name
38     type: string
39     default: 'api-server'
40   ContrailConfigIfmapUserPassword:
41     description: Ifmap user password
42     type: string
43     default: 'api-server'
44   ContrailConfigPort:
45     default: 8082
46     description: Contrail Config Api port
47     type: number
48
49 resources:
50   ContrailBase:
51     type: ./contrail-base.yaml
52     properties:
53       ServiceData: {get_param: ServiceData}
54       ServiceNetMap: {get_param: ServiceNetMap}
55       DefaultPasswords: {get_param: DefaultPasswords}
56       EndpointMap: {get_param: EndpointMap}
57       RoleName: {get_param: RoleName}
58       RoleParameters: {get_param: RoleParameters}
59
60 outputs:
61   role_data:
62     description: Role Contrail Config using composable services.
63     value:
64       service_name: contrail_config
65       config_settings:
66         map_merge:
67           - get_attr: [ContrailBase, role_data, config_settings]
68           - contrail::config::ifmap_password: {get_param: ContrailConfigIfmapUserPassword}
69             contrail::config::ifmap_username: {get_param: ContrailConfigIfmapUserName}
70             contrail::config::listen_ip_address: {get_param: [ServiceNetMap, ContrailConfigNetwork]}
71             contrail::config::listen_port: {get_param: ContrailConfigPort}
72             contrail::config::redis_server: '127.0.0.1'
73             contrail::config::host_ip: {get_param: [ServiceNetMap, ContrailConfigNetwork]}
74       step_config: |
75         include ::tripleo::network::contrail::config