Merge "Parameterize network type and tunnel types"
[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           ovs_db: {get_input: neutron_dsn}
38           ovs:
39             local_ip: {get_input: neutron_local_ip}
40             tenant_network_type: {get_input: neutron_tenant_network_type}
41             tunnel_types: {get_input: neutron_tunnel_types}
42             network_vlan_ranges: {get_input: neutron_network_vlan_ranges}
43             bridge_mappings: {get_input: neutron_bridge_mappings}
44             enable_tunneling: {get_input: neutron_enable_tunneling}
45             physical_bridge: {get_input: neutron_physical_bridge}
46             public_interface: {get_input: neutron_public_interface}
47           service-password: {get_input: neutron_password}
48         admin-password: {get_input: admin_password}
49         rabbit:
50           host: {get_input: rabbit_host}
51           username: {get_input: rabbit_username}
52           password: {get_input: rabbit_password}
53         live-update:
54           host: {get_input: live_update_host}
55           username: {get_input: live_update_username}
56           password: {get_input: live_update_password}
57           tenant-name: {get_input: live_update_tenant_name}
58           base_image_id: {get_input: nova_image}
59           live_update_image_id: {get_input: live_update_compute_image}
60         completion-signal: {get_input: deploy_signal_id}
61         ntp:
62           servers:
63               - {server: {get_input: ntp_server}, fudge: "stratum 0"}
64   NovaComputePassthrough:
65     type: OS::Heat::StructuredConfig
66     properties:
67       group: os-apply-config
68       config: {get_input: passthrough_config}
69   NovaComputePassthroughSpecific:
70     type: OS::Heat::StructuredConfig
71     properties:
72       group: os-apply-config
73       config: {get_input: passthrough_config_specific}