Add signal_transport property
[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           host: {get_input: nova_api_host}
12           service-password: {get_input: nova_password}
13         ceilometer:
14           db: {get_input: ceilometer_dsn}
15           metering_secret: {get_input: ceilometer_metering_secret}
16           service-password: {get_input: ceilometer_password}
17           compute_agent: {get_input: ceilometer_compute_agent}
18         snmpd:
19           export_MIB: UCD-SNMP-MIB
20           readonly_user_name: {get_input: snmpd_readonly_user_name}
21           readonly_user_password: {get_input: snmpd_readonly_user_password}
22         glance:
23           host: {get_input: glance_host}
24           port: {get_input: glance_port}
25           protocol: {get_input: glance_protocol}
26         keystone:
27           host: {get_input: keystone_host}
28         neutron:
29           flat-networks: {get_input: neutron_flat_networks}
30           host: {get_input: neutron_host}
31           ovs_db: {get_input: neutron_dsn}
32           ovs:
33             local_ip: {get_input: neutron_local_ip}
34             tenant_network_type: {get_input: neutron_tenant_network_type}
35             network_vlan_ranges: {get_input: neutron_network_vlan_ranges}
36             bridge_mappings: {get_input: neutron_bridge_mappings}
37             enable_tunneling: {get_input: neutron_enable_tunneling}
38             physical_bridge: {get_input: neutron_physical_bridge}
39             public_interface: {get_input: neutron_public_interface}
40           service-password: {get_input: neutron_password}
41         admin-password: {get_input: admin_password}
42         rabbit:
43           username: {get_input: rabbit_user_name}
44           password: {get_input: rabbit_password}
45         live-update:
46           host: {get_input: live_update_host}
47           username: {get_input: live_update_username}
48           password: {get_input: live_update_password}
49           tenant-name: {get_input: live_update_tenant_name}
50           base_image_id: {get_input: nova_image}
51           live_update_image_id: {get_input: live_update_compute_image}
52         completion-signal: {get_input: deploy_signal_id}
53         ntp:
54           servers:
55               - {server: {get_input: ntp_server}, fudge: "stratum 0"}
56   NovaComputePassthrough:
57     Type: OS::Heat::StructuredConfig
58     Properties:
59       group: os-apply-config
60       config: {get_input: passthrough_config}