Revert "puppet: disable swift proxy and glance backend"
[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           debug: {get_param: Debug}
11           host: {get_input: nova_api_host}
12           public_ip: {get_input: nova_public_ip}
13           service-password: {get_input: nova_password}
14         ceilometer:
15           debug: {get_param: Debug}
16           metering_secret: {get_input: ceilometer_metering_secret}
17           service-password: {get_input: ceilometer_password}
18           compute_agent: {get_input: ceilometer_compute_agent}
19         snmpd:
20           export_MIB: UCD-SNMP-MIB
21           readonly_user_name: {get_input: snmpd_readonly_user_name}
22           readonly_user_password: {get_input: snmpd_readonly_user_password}
23         glance:
24           debug: {get_param: Debug}
25           host: {get_input: glance_host}
26           port: {get_input: glance_port}
27           protocol: {get_input: glance_protocol}
28         keystone:
29           debug: {get_param: Debug}
30           host: {get_input: keystone_host}
31         neutron:
32           debug: {get_param: Debug}
33           flat-networks: {get_input: neutron_flat_networks}
34           host: {get_input: neutron_host}
35           router_distributed: {get_input: neutron_router_distributed}
36           agent_mode: {get_input: neutron_agent_mode}
37           metadata_proxy_shared_secret: {get_input: neutron_metadata_proxy_shared_secret}
38           mechanism_drivers: {get_input: neutron_mechanism_drivers}
39           allow_automatic_l3agent_failover: {get_input: neutron_allow_l3agent_failover}
40           l3_ha: {get_input: neutron_l3_ha}
41           ovs:
42             local_ip: {get_input: neutron_local_ip}
43             tenant_network_type: {get_input: neutron_tenant_network_type}
44             tunnel_types: {get_input: neutron_tunnel_types}
45             network_vlan_ranges: {get_input: neutron_network_vlan_ranges}
46             bridge_mappings: {get_input: neutron_bridge_mappings}
47             enable_tunneling: {get_input: neutron_enable_tunneling}
48             physical_bridge: {get_input: neutron_physical_bridge}
49             public_interface: {get_input: neutron_public_interface}
50             public_interface_raw_device: {get_input: neutron_public_interface_raw_device}
51           service-password: {get_input: neutron_password}
52         admin-password: {get_input: admin_password}
53         rabbit:
54           host: {get_input: rabbit_host}
55           username: {get_input: rabbit_username}
56           password: {get_input: rabbit_password}
57         ntp:
58           servers:
59               - {server: {get_input: ntp_server}}
60   NovaComputePassthrough:
61     type: OS::Heat::StructuredConfig
62     properties:
63       group: os-apply-config
64       config: {get_input: passthrough_config}
65   NovaComputePassthroughSpecific:
66     type: OS::Heat::StructuredConfig
67     properties:
68       group: os-apply-config
69       config: {get_input: passthrough_config_specific}