Merge "Use Redis VIP when deploying with keepalived"
[apex-tripleo-heat-templates.git] / puppet / services / neutron-api.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   OpenStack Neutron Server configured with Puppet
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   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   NeutronWorkers:
22     default: ''
23     description: |
24       Sets the number of API and RPC workers for the Neutron service. The
25       default value results in the configuration being left unset and a
26       system-dependent default will be chosen (usually the number of
27       processors). Please note that this can result in a large number of
28       processes and memory consumption on systems with a large core count. On
29       such systems it is recommended that a non-default value be selected that
30       matches the load requirements.
31     type: string
32   NeutronPassword:
33     description: The password for the neutron service and db account, used by neutron agents.
34     type: string
35     hidden: true
36   NeutronAllowL3AgentFailover:
37     default: 'True'
38     description: Allow automatic l3-agent failover
39     type: string
40   NeutronL3HA:
41     default: false
42     description: Whether to enable HA for virtual routers
43     type: boolean
44   NovaPassword:
45     description: The password for the nova service and db account, used by nova-api.
46     type: string
47     hidden: true
48   NeutronEnableDVR:
49     description: Enable Neutron DVR.
50     default: false
51     type: boolean
52   KeystoneRegion:
53     type: string
54     default: 'regionOne'
55     description: Keystone region for endpoint
56   MonitoringSubscriptionNeutronServer:
57     default: 'overcloud-neutron-server'
58     type: string
59
60 resources:
61
62   NeutronBase:
63     type: ./neutron-base.yaml
64     properties:
65       ServiceNetMap: {get_param: ServiceNetMap}
66       DefaultPasswords: {get_param: DefaultPasswords}
67       EndpointMap: {get_param: EndpointMap}
68
69 outputs:
70   role_data:
71     description: Role data for the Neutron Server agent service.
72     value:
73       service_name: neutron_api
74       monitoring_subscription: {get_param: MonitoringSubscriptionNeutronServer}
75       config_settings:
76         map_merge:
77           - get_attr: [NeutronBase, role_data, config_settings]
78             neutron::server::database_connection:
79               list_join:
80                 - ''
81                 - - {get_param: [EndpointMap, MysqlInternal, protocol]}
82                   - '://neutron:'
83                   - {get_param: NeutronPassword}
84                   - '@'
85                   - {get_param: [EndpointMap, MysqlInternal, host]}
86                   - '/ovs_neutron'
87             neutron::keystone::auth::tenant: 'service'
88             neutron::keystone::auth::public_url: {get_param: [EndpointMap, NeutronPublic, uri]}
89             neutron::keystone::auth::internal_url: { get_param: [ EndpointMap, NeutronInternal, uri ] }
90             neutron::keystone::auth::admin_url: { get_param: [ EndpointMap, NeutronAdmin, uri ] }
91             neutron::keystone::auth::password: {get_param: NeutronPassword}
92             neutron::keystone::auth::region: {get_param: KeystoneRegion}
93             neutron::keystone::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri] }
94             neutron::keystone::authtoken::auth_url: {get_param: [EndpointMap, KeystoneAdmin, uri_no_suffix]}
95             neutron::server::api_workers: {get_param: NeutronWorkers}
96             neutron::server::rpc_workers: {get_param: NeutronWorkers}
97             neutron::server::allow_automatic_l3agent_failover: {get_param: NeutronAllowL3AgentFailover}
98             neutron::server::l3_ha: {get_param: NeutronL3HA}
99             neutron::keystone::authtoken::password: {get_param: NeutronPassword}
100
101             neutron::server::notifications::nova_url: { get_param: [ EndpointMap, NovaInternal, uri ] }
102             neutron::server::notifications::auth_url: { get_param: [ EndpointMap, KeystoneV3Admin, uri ] }
103             neutron::server::notifications::tenant_name: 'service'
104             neutron::server::notifications::project_name: 'service'
105             neutron::server::notifications::password: {get_param: NovaPassword}
106             neutron::keystone::authtoken::project_name: 'service'
107             neutron::server::sync_db: true
108             neutron::db::mysql::password: {get_param: NeutronPassword}
109             neutron::db::mysql::user: neutron
110             neutron::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
111             neutron::db::mysql::dbname: ovs_neutron
112             neutron::db::mysql::allowed_hosts:
113               - '%'
114               - "%{hiera('mysql_bind_host')}"
115             tripleo.neutron_server.firewall_rules:
116               '114 neutron server':
117                 dport:
118                   - 9696
119                   - 13696
120               '118 neutron vxlan networks':
121                 proto: 'udp'
122                 dport: 4789
123               '106 vrrp':
124                 proto: vrrp
125             neutron::server::router_distributed: {get_param: NeutronEnableDVR}
126             # NOTE: bind IP is found in Heat replacing the network name with the local node IP
127             # for the given network; replacement examples (eg. for internal_api):
128             # internal_api -> IP
129             # internal_api_uri -> [IP]
130             # internal_api_subnet - > IP/CIDR
131             neutron::bind_host: {get_param: [ServiceNetMap, NeutronApiNetwork]}
132       step_config: |
133         include tripleo::profile::base::neutron::server