Remove nova-compute-group.yaml
authorAlexis Lee <alexisl@hp.com>
Thu, 24 Jul 2014 16:51:55 +0000 (17:51 +0100)
committerAlexis Lee <alexisl@hp.com>
Mon, 28 Jul 2014 08:16:35 +0000 (08:16 +0000)
This file is not used.

Change-Id: Ic03fb3402b3164c7c99cf02040f3a5e5abf6a9e9

nova-compute-group.yaml [deleted file]

diff --git a/nova-compute-group.yaml b/nova-compute-group.yaml
deleted file mode 100644 (file)
index 6a58643..0000000
+++ /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}