diff options
-rw-r--r-- | nova-compute.yaml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/nova-compute.yaml b/nova-compute.yaml index ad7446f0..172e9a1a 100644 --- a/nova-compute.yaml +++ b/nova-compute.yaml @@ -8,7 +8,7 @@ Parameters: InstanceType: Description: Use this flavor Type: String - Default: bm.small + Default: baremetal NovaImage: Type: String KeystoneHost: @@ -16,6 +16,8 @@ Parameters: ServicePassword: Description: admin_password for setting up auth in nova. Type: String + QuantumHost: + Type: String RabbitHost: Type: String RabbitPassword: @@ -24,7 +26,7 @@ Parameters: Type: String Default: eth0 NovaComputeSize: - Type: Integer + Type: Number Default: 1 NovaComputeDriver: Type: String @@ -78,8 +80,10 @@ Resources: store_key: '' interfaces: control: {Ref: NovaInterfaces} - NovaCompute: + NovaCompute: Type: OS::Heat::InstanceGroup Properties: - LaunchConfiguration: {Ref: NovaLaunch} + LaunchConfigurationName: {Ref: NovaLaunch} Size: {Ref: NovaComputeSize} + AvailabilityZones: + Fn::GetAZs: '' |