diff options
author | 2015-10-01 17:41:22 +0000 | |
---|---|---|
committer | 2015-10-01 17:41:22 +0000 | |
commit | d29003ac6d1c61db65b4ca3272ecbde3ea0942be (patch) | |
tree | f8206d39d7b51cf0f28bcfb26fd44a9f5732d69d /deprecated/undercloud-vm-nova-config.yaml | |
parent | 2ceb9a61111e48f3ccee68732291e40897634968 (diff) | |
parent | 4425d007fddd3fff904040d5233ffe485fd7e84f (diff) |
Merge "Deprecate the undercloud templates."
Diffstat (limited to 'deprecated/undercloud-vm-nova-config.yaml')
-rw-r--r-- | deprecated/undercloud-vm-nova-config.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/deprecated/undercloud-vm-nova-config.yaml b/deprecated/undercloud-vm-nova-config.yaml new file mode 100644 index 00000000..1fb8abb3 --- /dev/null +++ b/deprecated/undercloud-vm-nova-config.yaml @@ -0,0 +1,29 @@ +resources: + undercloudNovaConfig: + type: OS::Heat::StructuredConfig + properties: + config: + nova: + compute_hostname: undercloud + compute_driver: {get_param: NovaComputeDriver} + compute_manager: {get_param: NovaComputeManager} + scheduler_host_manager: {get_param: NovaSchedulerHostManager} + db: {list_join: ['', ['mysql://nova:', {get_param: NovaPassword}, '@localhost/nova']]} + default_ephemeral_format: ext4 + host: 127.0.0.1 + metadata-proxy: false + tuning: + ram_allocation_ratio: 1.0 + reserved_host_memory_mb: 0 + baremetal: + arch: {get_input: nova_arch} + db: {list_join: ['', ['mysql://nova:', {get_param: NovaPassword}, '@localhost/nova_bm']]} + power_manager: {get_input: power_manager} + pxe_deploy_timeout: {get_input: pxe_deploy_timeout} + virtual_power: + user: {get_input: user} + ssh_host: {get_input: ssh_host} + ssh_key: {get_input: ssh_key} + type: virsh + service-password: {get_input: nova_service_password} + |