Add corosync and pacemaker properties into overcloud template
[apex-tripleo-heat-templates.git] / undercloud-vm-ironic-deploy.yaml
1 Parameters:
2   IronicPassword:
3     Type: String
4     Description: Ironic password for keystone access
5     NoEcho: true
6   NeutronPublicInterface:
7     Default: eth0
8     Description: What interface to bridge onto br-ex for network nodes.
9     Type: String
10   PowerSSHPrivateKey:
11     Description: Private key for using to ssh to a virtual power host.
12     Type: String
13     NoEcho: true
14 Resources:
15   01_undercloudNovaDeployment:
16     Type: OS::Heat::StructuredDeployment
17     Properties:
18       config: {Ref: undercloudNovaConfig}
19       server: {Ref: undercloud}
20       signal_transport: NO_SIGNAL
21       input_values:
22         nova_service_password: {Ref: NovaPassword}
23   02_undercloudIronicDeployment:
24     Type: OS::Heat::StructuredDeployment
25     Properties:
26       config: {Ref: undercloudIronicConfig}
27       server: {Ref: undercloud}
28       signal_transport: NO_SIGNAL
29       input_values:
30         ironic_service_password: {Ref: IronicPassword}
31         virtual_power_ssh_key: {Ref: PowerSSHPrivateKey}