Skip to content

Instantly share code, notes, and snippets.

@willkelly
Created December 5, 2011 15:25
Show Gist options
  • Save willkelly/1433951 to your computer and use it in GitHub Desktop.
Save willkelly/1433951 to your computer and use it in GitHub Desktop.
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2011 OpenStack, LLC.
#
# 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.
"""Extra Manager to limit networks by availability zone."""
from nova import flags
from nova.network import manager
from nova import context
FLAGS = flags.FLAGS
class AZDHCPManager(manager.FlatDHCPManager):
"""Extends FlatDHCPManager to limit networks to availability zone."""
def init_host(self):
"""Do any initialization that needs to be run if this is a
standalone service.
"""
# Same as FlatDHCPManager, except only for networks with the right label.
# Unfortunately NetworkManager's init_host results in wrong behavior
# So we munge in both behaviors here, no call to super.
ctxt = context.get_admin_context()
self.driver.ensure_metadata_ip()
for network in self.db.network_get_all_by_host(ctxt, self.host):
if network['label'] == FLAGS.node_availability_zone:
self._setup_network(ctxt, network)
self.driver.init_host()
self.init_host_floating_ips()
self.driver.metadata_forward()
def _get_networks_for_instance(self, context, instance_id, project_id,
requested_networks=None):
supercls = super(manager.FlatDHCPManager, self)
networks = supercls._get_networks_for_instance(context,
instance_id,
project_id,
requested_networks)
# NOTE(vish): expects label to be set to the name of the availability
# zone. This is easier than adding a new field to the
# database.
i_ref = self.db.instance_get(context, instance_id)
return [network for network in networks if
network['label'] == i_ref['availability_zone']]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment