aboutsummaryrefslogtreecommitdiffstats
path: root/nova-compute-group.yaml
diff options
context:
space:
mode:
authorAlexis Lee <alexisl@hp.com>2014-07-24 17:51:55 +0100
committerAlexis Lee <alexisl@hp.com>2014-07-28 08:16:35 +0000
commit5c33892f43931bb98ceccb8550cad4d0bb287a66 (patch)
tree0e014d33e3d9815ab43f4bb65b54a4183acbfae5 /nova-compute-group.yaml
parent723cdf75e5089dabd93f72ed2eba4aeb6a18ee75 (diff)
Remove nova-compute-group.yaml
This file is not used. Change-Id: Ic03fb3402b3164c7c99cf02040f3a5e5abf6a9e9
Diffstat (limited to 'nova-compute-group.yaml')
-rw-r--r--nova-compute-group.yaml67
1 files changed, 0 insertions, 67 deletions
diff --git a/nova-compute-group.yaml b/nova-compute-group.yaml
deleted file mode 100644
index 6a586433..00000000
--- a/nova-compute-group.yaml
+++ /dev/null
@@ -1,67 +0,0 @@
-HeatTemplateFormatVersion: '2012-12-12'
-Description: 'Group of Nova Computes'
-Parameters:
- KeyName:
- Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
- Type: String
- Default: default
- InstanceType:
- Description: Use this flavor
- Type: String
- Default: baremetal
- NovaImage:
- Type: String
- Default: overcloud-compute
- KeystoneHost:
- Type: String
- ServicePassword:
- Description: admin_password for setting up auth in nova.
- Type: String
- NoEcho: true
- NeutronHost:
- Type: String
- RabbitHost:
- Type: String
- RabbitUserName:
- Type: String
- RabbitPassword:
- Type: String
- NoEcho: true
- NovaInterfaces:
- Type: String
- Default: eth0
- NovaComputeDriver:
- Type: String
- Default: libvirt.LibvirtDriver
- NovaApiHost:
- Type: String
- GlanceHost:
- Type: String
- NovaComputeTemplate:
- Type: String
- Default: https://raw.github.com/openstack/tripleo-heat-templates/master/nova-compute-instance.yaml
- NovaDSN:
- Type: String
- NeutronDSN:
- Type: String
-Resources:
- NovaCompute0:
- Type: AWS::CloudFormation::Stack
- Properties:
- Parameters:
- NovaImage: {Ref: NovaImage}
- InstanceType: {Ref: InstanceType}
- KeyName: {Ref: KeyName}
- KeystoneHost: {Ref: KeystoneHost}
- ServicePassword: {Ref: ServicePassword}
- NeutronHost: {Ref: NeutronHost}
- RabbitHost: {Ref: RabbitHost}
- RabbitUserName: {Ref: RabbitUserName}
- RabbitPassword: {Ref: RabbitPassword}
- NovaInterfaces: {Ref: NovaInterfaces}
- NovaComputeDriver: {Ref: NovaComputeDriver}
- NovaApiHost: {Ref: NovaApiHost}
- GlanceHost: {Ref: GlanceHost}
- NovaDSN: {Ref: NovaDSN}
- NeutronDSN: {Ref: NeutronDSN}
- TemplateURL: {Ref: NovaComputeTemplate}