
Part 2 of 6: blueprint general-bare-metal-provisioning-framework In baremetal provisioning, one nova-compute manages multiple bare-metal machines. A bare-metal machine does not run openstack at all. Previously, bare-metal provisioning used text files to store information of bare-metal machines. In this patch, a MySQL database is used to store the information. We target only MySQL database. The DB is designed to support PXE/non-PXE booting methods, heterogeneous hypervisor types, and architectures. Using a MySQL database makes maintenance and upgrades easier than using text files. The DB for bare-metal machines is implemented as a separate DB from the main Nova DB. The DB can be on any machines/places. The location of the DB and its server needs to be specified as a flag in the nova.conf file (as in the case of glance). There are a couple of reasons for this approach. First, the information needed for bare-metal machines is different from that for non-bare-metal machines. With a separate database for bare-metal machines, the database can be customized without affecting the main Nova DB. Second, fault tolerance can be embedded in nova-compute. Since one nova-compute manages multiple bare-metal machines, fault tolerance of a nova-compute node is very important. With a separate DB for bare-metal machines, fault-tolerance can be achieved independently from the main Nova DB. Replication of the bare-metal DB and implementation of fault-tolerance are not part of this patch. The implementation models nova and its DB as much as possible. The bare-metal driver must be upgraded to use this DB. Change-Id: I7b7ba1903a672a50c567f95fc6554d119463b0c5 Co-authored-by: Mikyung Kang <mkkang@isi.edu> Co-authored-by: David Kang <dkang@isi.edu> Co-authored-by: Ken Igarashi <igarashik@nttdocomo.co.jp> Co-authored-by: Arata Notsu <notsu@virtualtech.jp>
141 lines
5.0 KiB
Python
141 lines
5.0 KiB
Python
# Copyright (c) 2012 NTT DOCOMO, INC.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
Bare-Metal DB testcase for BareMetalNode
|
|
"""
|
|
|
|
from nova.tests.baremetal.db import base
|
|
from nova.tests.baremetal.db import utils
|
|
from nova.virt.baremetal import db
|
|
|
|
|
|
class BareMetalNodesTestCase(base.BMDBTestCase):
|
|
|
|
def _create_nodes(self):
|
|
nodes = [
|
|
utils.new_bm_node(pm_address='0', service_host="host1",
|
|
memory_mb=100000, cpus=100, local_gb=10000),
|
|
utils.new_bm_node(pm_address='1', service_host="host2",
|
|
instance_uuid='A',
|
|
memory_mb=100000, cpus=100, local_gb=10000),
|
|
utils.new_bm_node(pm_address='2', service_host="host2",
|
|
memory_mb=1000, cpus=1, local_gb=1000),
|
|
utils.new_bm_node(pm_address='3', service_host="host2",
|
|
memory_mb=1000, cpus=2, local_gb=1000),
|
|
utils.new_bm_node(pm_address='4', service_host="host2",
|
|
memory_mb=2000, cpus=1, local_gb=1000),
|
|
utils.new_bm_node(pm_address='5', service_host="host2",
|
|
memory_mb=2000, cpus=2, local_gb=1000),
|
|
]
|
|
self.ids = []
|
|
for n in nodes:
|
|
ref = db.bm_node_create(self.context, n)
|
|
self.ids.append(ref['id'])
|
|
|
|
def test_get_all0(self):
|
|
r = db.bm_node_get_all(self.context)
|
|
self.assertEquals(r, [])
|
|
|
|
def test_get_all(self):
|
|
r = db.bm_node_get_all(self.context)
|
|
self.assertEquals(r, [])
|
|
|
|
self._create_nodes()
|
|
|
|
r = db.bm_node_get_all(self.context)
|
|
self.assertEquals(len(r), 6)
|
|
|
|
def test_get(self):
|
|
self._create_nodes()
|
|
|
|
r = db.bm_node_get(self.context, self.ids[0])
|
|
self.assertEquals(r['pm_address'], '0')
|
|
|
|
r = db.bm_node_get(self.context, self.ids[1])
|
|
self.assertEquals(r['pm_address'], '1')
|
|
|
|
r = db.bm_node_get(self.context, -1)
|
|
self.assertTrue(r is None)
|
|
|
|
def test_get_by_service_host(self):
|
|
self._create_nodes()
|
|
|
|
r = db.bm_node_get_all(self.context, service_host=None)
|
|
self.assertEquals(len(r), 6)
|
|
|
|
r = db.bm_node_get_all(self.context, service_host="host1")
|
|
self.assertEquals(len(r), 1)
|
|
self.assertEquals(r[0]['pm_address'], '0')
|
|
|
|
r = db.bm_node_get_all(self.context, service_host="host2")
|
|
self.assertEquals(len(r), 5)
|
|
pmaddrs = [x['pm_address'] for x in r]
|
|
self.assertIn('1', pmaddrs)
|
|
self.assertIn('2', pmaddrs)
|
|
self.assertIn('3', pmaddrs)
|
|
self.assertIn('4', pmaddrs)
|
|
self.assertIn('5', pmaddrs)
|
|
|
|
r = db.bm_node_get_all(self.context, service_host="host3")
|
|
self.assertEquals(r, [])
|
|
|
|
def test_destroy(self):
|
|
self._create_nodes()
|
|
|
|
db.bm_node_destroy(self.context, self.ids[0])
|
|
|
|
r = db.bm_node_get(self.context, self.ids[0])
|
|
self.assertTrue(r is None)
|
|
|
|
r = db.bm_node_get_all(self.context)
|
|
self.assertEquals(len(r), 5)
|
|
|
|
def test_find_free(self):
|
|
self._create_nodes()
|
|
fn = db.bm_node_find_free(self.context, 'host2')
|
|
self.assertEqual(fn['pm_address'], '2')
|
|
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=500, cpus=2, local_gb=100)
|
|
self.assertEqual(fn['pm_address'], '3')
|
|
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=1001, cpus=1, local_gb=1000)
|
|
self.assertEqual(fn['pm_address'], '4')
|
|
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=2000, cpus=1, local_gb=1000)
|
|
self.assertEqual(fn['pm_address'], '4')
|
|
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=2000, cpus=2, local_gb=1000)
|
|
self.assertEqual(fn['pm_address'], '5')
|
|
|
|
# check memory_mb
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=2001, cpus=2, local_gb=1000)
|
|
self.assertTrue(fn is None)
|
|
|
|
# check cpus
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=2000, cpus=3, local_gb=1000)
|
|
self.assertTrue(fn is None)
|
|
|
|
# check local_gb
|
|
fn = db.bm_node_find_free(self.context, 'host2',
|
|
memory_mb=2000, cpus=2, local_gb=1001)
|
|
self.assertTrue(fn is None)
|