Write package names out to flat files
[apex-tripleo-heat-templates.git] / undercloud-vm-ironic-config.yaml
1 resources:
2   undercloudNovaConfig:
3     type: OS::Heat::StructuredConfig
4     properties:
5       config:
6         nova:
7           compute_hostname: undercloud
8           compute_driver: {get_param: NovaComputeDriver}
9           compute_manager: {get_param: NovaComputeManager}
10           scheduler_host_manager: {get_param: NovaSchedulerHostManager}
11           db: {list_join: ['', ['mysql://nova:', {get_param: NovaPassword}, '@localhost/nova']]}
12           debug: {get_param: Debug}
13           default_ephemeral_format: ext4
14           host: 127.0.0.1
15           metadata-proxy: false
16           tuning:
17             ram_allocation_ratio: 1.0
18             reserved_host_memory_mb: 0
19           service-password: {get_input: nova_service_password}
20   undercloudIronicConfig:
21     type: OS::Heat::StructuredConfig
22     properties:
23       config:
24         ironic:
25           db: {list_join: ['', ['mysql://ironic:', {get_param: IronicPassword}, '@localhost/ironic']]}
26           service-password: {get_input: ironic_service_password}
27           virtual_power_ssh_key: {get_input: virtual_power_ssh_key}