2014-06-05 11:59:23 +01:00
|
|
|
from charmhelpers.contrib.openstack.neutron import neutron_plugin_attribute
|
|
|
|
from copy import deepcopy
|
|
|
|
|
2014-06-09 10:37:59 +00:00
|
|
|
from charmhelpers.contrib.openstack import templating
|
2014-06-05 11:59:23 +01:00
|
|
|
from collections import OrderedDict
|
|
|
|
from charmhelpers.contrib.openstack.utils import (
|
|
|
|
os_release,
|
|
|
|
)
|
|
|
|
import neutron_ovs_context
|
|
|
|
|
|
|
|
NOVA_CONF_DIR = "/etc/nova"
|
|
|
|
NEUTRON_CONF_DIR = "/etc/neutron"
|
2014-06-09 10:37:59 +00:00
|
|
|
NEUTRON_CONF = "%s/neutron.conf" % NEUTRON_CONF_DIR
|
2014-06-05 11:59:23 +01:00
|
|
|
ML2_CONF = '%s/plugins/ml2/ml2_conf.ini' % NEUTRON_CONF_DIR
|
|
|
|
|
|
|
|
BASE_RESOURCE_MAP = OrderedDict([
|
|
|
|
(ML2_CONF, {
|
|
|
|
'services': ['neutron-plugin-openvswitch-agent'],
|
|
|
|
'contexts': [neutron_ovs_context.OVSPluginContext()],
|
|
|
|
}),
|
|
|
|
])
|
|
|
|
TEMPLATES = 'templates/'
|
2014-06-09 14:11:20 +00:00
|
|
|
NEUTRON_SERVICE_PLUGINS=['neutron.services.l3_router.l3_router_plugin.L3RouterPlugin',
|
|
|
|
'neutron.services.firewall.fwaas_plugin.FirewallPlugin',
|
|
|
|
'neutron.services.loadbalancer.plugin.LoadBalancerPlugin',
|
|
|
|
'neutron.services.vpn.plugin.VPNDriverPlugin',
|
|
|
|
'neutron.services.metering.metering_plugin.MeteringPlugin']
|
2014-06-09 10:37:59 +00:00
|
|
|
NEUTRON_SETTINGS = {
|
|
|
|
"neutron": {
|
|
|
|
NEUTRON_CONF: {
|
|
|
|
"sections": {
|
|
|
|
"DEFAULT": [
|
2014-06-09 10:42:56 +00:00
|
|
|
('core_plugin', 'neutron.plugins.ml2.plugin.Ml2Plugin'),
|
2014-06-09 14:11:20 +00:00
|
|
|
('service_plugins', ','.join(NEUTRON_SERVICE_PLUGINS)),
|
2014-06-09 10:37:59 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-05 11:59:23 +01:00
|
|
|
def determine_packages():
|
|
|
|
ovs_pkgs = []
|
|
|
|
pkgs = neutron_plugin_attribute('ovs', 'packages',
|
|
|
|
'neutron')
|
|
|
|
for pkg in pkgs:
|
|
|
|
ovs_pkgs.extend(pkg)
|
|
|
|
|
|
|
|
return set(ovs_pkgs)
|
|
|
|
|
|
|
|
def register_configs(release=None):
|
2014-06-09 14:11:20 +00:00
|
|
|
release = release or os_release('neutron-common')
|
2014-06-05 11:59:23 +01:00
|
|
|
configs = templating.OSConfigRenderer(templates_dir=TEMPLATES,
|
|
|
|
openstack_release=release)
|
|
|
|
for cfg, rscs in resource_map().iteritems():
|
|
|
|
configs.register(cfg, rscs['contexts'])
|
|
|
|
return configs
|
|
|
|
|
|
|
|
def resource_map():
|
|
|
|
'''
|
|
|
|
Dynamically generate a map of resources that will be managed for a single
|
|
|
|
hook execution.
|
|
|
|
'''
|
|
|
|
resource_map = deepcopy(BASE_RESOURCE_MAP)
|
|
|
|
return resource_map
|
|
|
|
|
|
|
|
def restart_map():
|
|
|
|
'''
|
|
|
|
Constructs a restart map based on charm config settings and relation
|
|
|
|
state.
|
|
|
|
'''
|
|
|
|
return {k: v['services'] for k, v in resource_map().iteritems()}
|