Puppet: overcloud compute config
[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           db: {get_input: ceilometer_dsn}
16           debug: {get_param: Debug}
17           metering_secret: {get_input: ceilometer_metering_secret}
18           service-password: {get_input: ceilometer_password}
19           compute_agent: {get_input: ceilometer_compute_agent}
20         snmpd:
21           export_MIB: UCD-SNMP-MIB
22           readonly_user_name: {get_input: snmpd_readonly_user_name}
23           readonly_user_password: {get_input: snmpd_readonly_user_password}
24         glance:
25           debug: {get_param: Debug}
26           host: {get_input: glance_host}
27           port: {get_input: glance_port}
28           protocol: {get_input: glance_protocol}
29         keystone:
30           debug: {get_param: Debug}
31           host: {get_input: keystone_host}
32         neutron:
33           debug: {get_param: Debug}
34           flat-networks: {get_input: neutron_flat_networks}
35           host: {get_input: neutron_host}
36           router_distributed: {get_input: neutron_router_distributed}
37           agent_mode: {get_input: neutron_agent_mode}
38           metadata_proxy_shared_secret: {get_input: neutron_metadata_proxy_shared_secret}
39           mechanism_drivers: {get_input: neutron_mechanism_drivers}
40           allow_automatic_l3agent_failover: {get_input: neutron_allow_l3agent_failover}
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}, fudge: "stratum 0"}
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}