diff options
-rw-r--r-- | overcloud-source.yaml | 7 | ||||
-rw-r--r-- | undercloud-vm.yaml | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml index d86d5839..552f1149 100644 --- a/overcloud-source.yaml +++ b/overcloud-source.yaml @@ -2,6 +2,10 @@ Description: Nova API,Keystone,Heat Engine and API,Glance,Neutron,Dedicated MySQ server,Dedicated RabbitMQ Server,Group of Nova Computes HeatTemplateFormatVersion: '2012-12-12' Parameters: + AdminToken: + Default: unset + Description: The keystone auth secret. + Type: String InstanceType: Default: baremetal Description: Flavor to request when deploying. @@ -97,7 +101,8 @@ Resources: - heat-localip - neutron-network-node admin-password: unset - admin-token: unset + admin-token: + Ref: AdminToken cinder: db: mysql://cinder:unset@localhost/cinder volume_size_mb: '5000' diff --git a/undercloud-vm.yaml b/undercloud-vm.yaml index 5fbe51f8..45a5386b 100644 --- a/undercloud-vm.yaml +++ b/undercloud-vm.yaml @@ -1,6 +1,10 @@ escription: All-in-one baremetal OpenStack and all dependencies. HeatTemplateFormatVersion: '2012-12-12' Parameters: + AdminToken: + Default: unset + Description: The keystone auth secret. + Type: String InstanceType: Default: baremetal Description: Flavor to request when deploying. @@ -41,7 +45,8 @@ Resources: OpenStack::Heat::Stack: {} Openstack::ImageBuilder::Elements: [ boot-stack, heat-cfntools, neutron-network-node ] admin-password: unset - admin-token: unset + admin-token: + Ref: AdminToken controller-address: Fn::GetAtt: - notcompute |