blob: 0377448056b1f9b1e01ebe04806b08eb64da8c30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
heat_template_version: ocata
description: >
Contrail Config service deployment using puppet, this YAML file
creates the interface between the HOT template
and the puppet manifest that actually installs
and configures Contrail Config.
parameters:
ServiceNetMap:
default: {}
description: Mapping of service_name -> network name. Typically set
via parameter_defaults in the resource registry. This
mapping overrides those in ServiceNetMapDefaults.
type: json
DefaultPasswords:
default: {}
type: json
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
type: json
ContrailConfigIfmapServerIp:
description: Ifmap server ip address
type: string
ContrailConfigIfmapUserName:
description: Ifmap user name
type: string
ContrailConfigIfmapUserPassword:
description: Ifmap user password
type: string
ContrailConfigRabbitServerIp:
description: RabbitMq server ip address
type: string
ContrailConfigRedisServerIp:
description: Redis server ip address
type: string
ContrailConfigListenAddress:
default: '0.0.0.0'
description: IP address Config API is listening on
type: string
ContrailConfigListenPort:
default: 8082
description: Port Config API is listening on
type: number
resources:
ContrailBase:
type: ./contrail-base.yaml
properties:
ServiceNetMap: {get_param: ServiceNetMap}
DefaultPasswords: {get_param: DefaultPasswords}
EndpointMap: {get_param: EndpointMap}
outputs:
role_data:
description: Role Contrail Config using composable services.
value:
service_name: contrail_config
config_settings:
map_merge:
- get_attr: [ContrailBase, role_data, config_settings]
- contrail::config::ifmap_password: {get_param: ContrailConfigIfmapUserPassword}
contrail::config::ifmap_server_ip: {get_param: ContrailConfigIfmapServerIp}
contrail::config::ifmap_username: {get_param: ContrailConfigIfmapUserName}
contrail::config::listen_ip_address: {get_param: ContrailConfigListenAddress}
contrail::config::listen_port: {get_param: ContrailConfigListenPort}
contrail::config::rabbit_server: {get_param: ContrailConfigRabbitServerIp}
contrail::config::redis_server: {get_param: ContrailConfigRedisServerIp}
step_config: |
include ::tripleo::network::contrail::config
|