f5a50a1d7d
Configuration based off upstream documentation here: http://docs.openstack.org/developer/ironic/deploy/install-guide.html A few notes: -ironic-api is not configured to use mod_wsgi -several places it's noted that discoverd is going away and needs to be replaced with ironic-inspector - (sqlite connection should be changed too) -currently enabling ironic reconfigures nova compute (driver and scheduler) as well as changes neutron network settings -a nice enhancement would be to configure the web console Required post-deployment configuration: Create the flat network to launch the instances: neutron net-create --tenant-id $TENANT_ID sharednet1 --shared \ --provider:network_type flat --provider:physical_network physnet1 neutron subnet-create sharednet1 $NETWORK_CIDR --name $SUBNET_NAME \ --ip-version=4 --gateway=$GATEWAY_IP --allocation-pool \ start=$START_IP,end=$END_IP --enable-dhcp And then the above ID is used to set cleaning_network_uuid in the neutron section of ironic.conf. Change-Id: I572e7ff1f23c4e57a2c50817cafe9269fd9950dd Implements: blueprint ironic-container
87 lines
3.1 KiB
Python
87 lines
3.1 KiB
Python
# 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.
|
|
|
|
|
|
from mock import patch
|
|
from os import path
|
|
from oslo_log import fixture as log_fixture
|
|
from oslo_log import log as logging
|
|
from oslotest import base
|
|
|
|
import sys
|
|
sys.path.append(path.abspath(path.join(path.dirname(__file__), '../tools')))
|
|
from kolla.cmd import build
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class BuildTest(base.BaseTestCase):
|
|
|
|
def setUp(self):
|
|
super(BuildTest, self).setUp()
|
|
self.useFixture(log_fixture.SetLogLevel([__name__],
|
|
logging.logging.INFO))
|
|
self.build_args = [__name__, "--debug"]
|
|
|
|
def runTest(self):
|
|
with patch.object(sys, 'argv', self.build_args):
|
|
LOG.info("Running with args %s" % self.build_args)
|
|
bad_results, good_results, unmatched_results = build.main()
|
|
|
|
# these are images that are known to not build properly
|
|
excluded_images = ["gnocchi-base",
|
|
"murano-base",
|
|
"ironic-pxe",
|
|
"ironic-discoverd"]
|
|
|
|
failures = 0
|
|
for image, result in bad_results.iteritems():
|
|
if image in excluded_images:
|
|
if result is 'error':
|
|
continue
|
|
failures = failures + 1
|
|
LOG.warning(">>> Expected image '%s' to fail, please update"
|
|
" the excluded_images in source file above if the"
|
|
" image build has been fixed." % image)
|
|
else:
|
|
if result is not 'error':
|
|
continue
|
|
failures = failures + 1
|
|
LOG.critical(">>> Expected image '%s' to succeed!" % image)
|
|
|
|
for image in unmatched_results.keys():
|
|
failures = failures + 1
|
|
LOG.critical(">>> Expected image '%s' to be matched!" % image)
|
|
|
|
self.assertEqual(failures, 0, "%d failure(s) occurred" % failures)
|
|
|
|
|
|
class BuildTestCentosBinary(BuildTest):
|
|
def setUp(self):
|
|
super(BuildTestCentosBinary, self).setUp()
|
|
self.build_args.extend(["--base", "centos",
|
|
"--type", "binary"])
|
|
|
|
|
|
class BuildTestCentosSource(BuildTest):
|
|
def setUp(self):
|
|
super(BuildTestCentosSource, self).setUp()
|
|
self.build_args.extend(["--base", "centos",
|
|
"--type", "source"])
|
|
|
|
|
|
class BuildTestUbuntuSource(BuildTest):
|
|
def setUp(self):
|
|
super(BuildTestUbuntuSource, self).setUp()
|
|
self.build_args.extend(["--base", "ubuntu",
|
|
"--type", "source"])
|