Drop dnsmasq_range from the undercloud source.
[apex-tripleo-heat-templates.git] / undercloud-vm-source.yaml
1 Parameters:
2   NeutronPublicInterface:
3     Default: eth0
4     Description: What interface to bridge onto br-ex for network nodes.
5     Type: String
6   PowerManager:
7     Default: nova.virt.baremetal.virtual_power_driver.VirtualPowerManager
8     Description: Bare metal power manager driver.
9     Type: String
10   PowerSSHHost:
11     Default: 192.168.122.1
12     Description: SSH host to ssh to for power management operations.
13     Type: String
14   PowerSSHPrivateKey:
15     Description: Private key for using to ssh to a virtual power host.
16     Type: String
17     NoEcho: true
18   PowerUserName:
19     Default: stack
20     Description: What username to ssh to the virtual power host with.
21     Type: String
22 Resources:
23   undercloudConfig:
24     Type: AWS::AutoScaling::LaunchConfiguration
25     Metadata:
26       nova:
27         compute_hostname: undercloud
28         compute_driver: baremetal.driver.BareMetalDriver
29         db: mysql://nova:unset@localhost/nova
30         default_ephemeral_format: ext4
31         host: 127.0.0.1
32         metadata-proxy: false
33         tuning:
34           ram_allocation_ratio: 1.0
35           reserved_host_memory_mb: 0
36         baremetal:
37           arch:
38             Ref: BaremetalArch
39           db: mysql://nova:unset@localhost/nova_bm
40           power_manager:
41             Ref: PowerManager
42           pxe_deploy_timeout: 2400
43           virtual_power:
44             user:
45               Ref: PowerUserName
46             ssh_host:
47               Ref: PowerSSHHost
48             ssh_key:
49               Ref: PowerSSHPrivateKey
50             type: virsh
51         service-password:
52           Ref: NovaPassword