/usr/share/tripleo-heat-templates/nova-compute-group.yaml is in python-tripleo-heat-templates 0.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | 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}
|