Add undercloud-vm-ironic-source yaml file
[apex-tripleo-heat-templates.git] / nova-compute-group.yaml
1 HeatTemplateFormatVersion: '2012-12-12'
2 Description: 'Group of Nova Computes'
3 Parameters:
4   KeyName: 
5     Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
6     Type: String
7     Default: default
8   InstanceType:
9     Description: Use this flavor
10     Type: String
11     Default: baremetal
12   NovaImage:
13     Type: String
14     Default: overcloud-compute
15   KeystoneHost:
16     Type: String
17   ServicePassword:
18     Description: admin_password for setting up auth in nova.
19     Type: String
20     NoEcho: true
21   NeutronHost:
22     Type: String
23   RabbitHost:
24     Type: String
25   RabbitPassword:
26     Type: String
27     NoEcho: true
28   NovaInterfaces:
29     Type: String
30     Default: eth0
31   NovaComputeDriver:
32     Type: String
33     Default: libvirt.LibvirtDriver
34   NovaApiHost:
35     Type: String
36   GlanceHost:
37     Type: String
38   NovaComputeTemplate:
39     Type: String
40     Default: https://raw.github.com/openstack/tripleo-heat-templates/master/nova-compute-instance.yaml
41   NovaDSN:
42     Type: String
43   NeutronDSN:
44     Type: String
45 Resources:
46   NovaCompute0:
47     Type: AWS::CloudFormation::Stack
48     Properties:
49       Parameters:
50         NovaImage: {Ref: NovaImage}
51         InstanceType: {Ref: InstanceType}
52         KeyName: {Ref: KeyName}
53         KeystoneHost: {Ref: KeystoneHost}
54         ServicePassword: {Ref: ServicePassword}
55         NeutronHost: {Ref: NeutronHost}
56         RabbitHost: {Ref: RabbitHost}
57         RabbitPassword: {Ref: RabbitPassword}
58         NovaInterfaces: {Ref: NovaInterfaces}
59         NovaComputeDriver: {Ref: NovaComputeDriver}
60         NovaApiHost: {Ref: NovaApiHost}
61         GlanceHost: {Ref: GlanceHost}
62         NovaDSN: {Ref: NovaDSN}
63         NeutronDSN: {Ref: NeutronDSN}
64       TemplateURL: {Ref: NovaComputeTemplate}