Enable Neutron DVR support in TripleO installation
[apex-tripleo-heat-templates.git] / nova-compute-config.yaml
1 resources:
2   NovaComputeConfig:
3     type: OS::Heat::StructuredConfig
4     properties:
5       group: os-apply-config
6       config:
7         nova:
8           compute_driver: { get_input: nova_compute_driver }
9           compute_libvirt_type: { get_input: nova_compute_libvirt_type }
10           db: {get_input: nova_dsn}
11           debug: {get_param: Debug}
12           host: {get_input: nova_api_host}
13           public_ip: {get_input: nova_public_ip}
14           service-password: {get_input: nova_password}
15         ceilometer:
16           db: {get_input: ceilometer_dsn}
17           debug: {get_param: Debug}
18           metering_secret: {get_input: ceilometer_metering_secret}
19           service-password: {get_input: ceilometer_password}
20           compute_agent: {get_input: ceilometer_compute_agent}
21         snmpd:
22           export_MIB: UCD-SNMP-MIB
23           readonly_user_name: {get_input: snmpd_readonly_user_name}
24           readonly_user_password: {get_input: snmpd_readonly_user_password}
25         glance:
26           debug: {get_param: Debug}
27           host: {get_input: glance_host}
28           port: {get_input: glance_port}
29           protocol: {get_input: glance_protocol}
30         keystone:
31           debug: {get_param: Debug}
32           host: {get_input: keystone_host}
33         neutron:
34           debug: {get_param: Debug}
35           flat-networks: {get_input: neutron_flat_networks}
36           host: {get_input: neutron_host}
37           router_distributed: {get_input: neutron_router_distributed}
38           agent_mode: {get_input: neutron_agent_mode}
39           ovs_db: {get_input: neutron_dsn}
40           metadata_proxy_shared_secret: {get_input: neutron_metadata_proxy_shared_secret}
41           mechanism_drivers: {get_input: neutron_mechanism_drivers}
42           allow_automatic_l3agent_failover: {get_input: neutron_allow_l3agent_failover}
43           ovs:
44             local_ip: {get_input: neutron_local_ip}
45             tenant_network_type: {get_input: neutron_tenant_network_type}
46             tunnel_types: {get_input: neutron_tunnel_types}
47             network_vlan_ranges: {get_input: neutron_network_vlan_ranges}
48             bridge_mappings: {get_input: neutron_bridge_mappings}
49             enable_tunneling: {get_input: neutron_enable_tunneling}
50             physical_bridge: {get_input: neutron_physical_bridge}
51             public_interface: {get_input: neutron_public_interface}
52             public_interface_raw_device: {get_input: neutron_public_interface_raw_device}
53           service-password: {get_input: neutron_password}
54         admin-password: {get_input: admin_password}
55         rabbit:
56           host: {get_input: rabbit_host}
57           username: {get_input: rabbit_username}
58           password: {get_input: rabbit_password}
59         live-update:
60           host: {get_input: live_update_host}
61           username: {get_input: live_update_username}
62           password: {get_input: live_update_password}
63           tenant-name: {get_input: live_update_tenant_name}
64           base_image_id: {get_input: nova_image}
65           live_update_image_id: {get_input: live_update_compute_image}
66         ntp:
67           servers:
68               - {server: {get_input: ntp_server}, fudge: "stratum 0"}
69   NovaComputePassthrough:
70     type: OS::Heat::StructuredConfig
71     properties:
72       group: os-apply-config
73       config: {get_input: passthrough_config}
74   NovaComputePassthroughSpecific:
75     type: OS::Heat::StructuredConfig
76     properties:
77       group: os-apply-config
78       config: {get_input: passthrough_config_specific}