2014-08-04 08:43:34 +12:00
|
|
|
parameters:
|
2014-05-02 16:52:18 +01:00
|
|
|
IronicPassword:
|
2014-08-04 08:43:34 +12:00
|
|
|
type: string
|
|
|
|
description: Ironic password for keystone access
|
|
|
|
hidden: true
|
2014-05-02 16:52:18 +01:00
|
|
|
NeutronPublicInterface:
|
2014-11-25 15:23:22 -05:00
|
|
|
default: nic1
|
2014-08-04 08:43:34 +12:00
|
|
|
description: What interface to bridge onto br-ex for network nodes.
|
|
|
|
type: string
|
2014-09-05 14:39:35 -05:00
|
|
|
NovaComputeDriver:
|
2014-09-19 10:44:32 -04:00
|
|
|
default: nova.virt.ironic.driver.IronicDriver
|
2014-09-05 14:39:35 -05:00
|
|
|
description: Full class name for the Nova compute driver
|
|
|
|
type: string
|
|
|
|
NovaComputeManager:
|
|
|
|
default: ironic.nova.compute.manager.ClusteredComputeManager
|
|
|
|
description: Full class name for the Nova compute manager
|
|
|
|
type: string
|
|
|
|
NovaSchedulerHostManager:
|
2014-09-19 10:44:32 -04:00
|
|
|
default: nova.scheduler.ironic_host_manager.IronicHostManager
|
2014-09-05 14:39:35 -05:00
|
|
|
description: Full class name for the Nova scheduler host manager
|
|
|
|
type: string
|
2014-05-02 16:52:18 +01:00
|
|
|
PowerSSHPrivateKey:
|
2014-08-04 08:43:34 +12:00
|
|
|
description: Private key for using to ssh to a virtual power host.
|
|
|
|
type: string
|
|
|
|
hidden: true
|
|
|
|
resources:
|
2014-08-14 11:40:29 +01:00
|
|
|
undercloudNovaDeployment:
|
|
|
|
depends_on: [undercloudIronicDeployment]
|
2014-08-04 08:43:34 +12:00
|
|
|
type: OS::Heat::StructuredDeployment
|
|
|
|
properties:
|
|
|
|
config: {get_resource: undercloudNovaConfig}
|
|
|
|
server: {get_resource: undercloud}
|
2014-05-02 16:52:18 +01:00
|
|
|
signal_transport: NO_SIGNAL
|
|
|
|
input_values:
|
2014-08-04 08:43:34 +12:00
|
|
|
nova_service_password: {get_param: NovaPassword}
|
2014-08-14 11:40:29 +01:00
|
|
|
undercloudIronicDeployment:
|
2014-08-04 08:43:34 +12:00
|
|
|
type: OS::Heat::StructuredDeployment
|
|
|
|
properties:
|
|
|
|
config: {get_resource: undercloudIronicConfig}
|
|
|
|
server: {get_resource: undercloud}
|
2014-05-02 16:52:18 +01:00
|
|
|
signal_transport: NO_SIGNAL
|
|
|
|
input_values:
|
2014-08-04 08:43:34 +12:00
|
|
|
ironic_service_password: {get_param: IronicPassword}
|
|
|
|
virtual_power_ssh_key: {get_param: PowerSSHPrivateKey}
|