Use new mogan CLI in devstack

We already changed to use new keyword 'baremetalcompute' in CLI,
so the old one will break our devstack installation. Also this
change the default flavor name to make it more specific.

Change-Id: Iead6c01ae62fbac77cedb7451f0dcdea7abc527f
This commit is contained in:
Zhenguo Niu 2017-08-24 11:48:34 +08:00
parent 3634201dfa
commit ef30a9ee96
1 changed files with 2 additions and 1 deletions

View File

@ -196,8 +196,9 @@ function create_flavor {
local ironic_node_ram=$IRONIC_HW_NODE_RAM
local ironic_node_disk=$IRONIC_HW_NODE_DISK
fi
name="baremetal_${ironic_node_cpu}cpu_${ironic_node_ram}mbram_${ironic_node_disk}gbdisk"
description="CPU: ${ironic_node_cpu}, RAM: ${ironic_node_ram}MB, DISK: ${ironic_node_disk}GB"
openstack baremetal flavor create $IRONIC_DEFAULT_RESOURCE_CLASS --description "${description}" --resources $IRONIC_DEFAULT_RESOURCE_CLASS=1
openstack baremetalcompute flavor create ${name} --description "${description}" --resources $IRONIC_DEFAULT_RESOURCE_CLASS=1
}