177 lines
5.4 KiB
Python
Raw Normal View History

import utils
2012-10-26 17:56:42 +02:00
import subprocess
try:
from quantumclient.v2_0 import client
except ImportError:
utils.install('python-quantumclient')
from quantumclient.v2_0 import client
2012-10-26 17:56:42 +02:00
OVS_PLUGIN = \
"quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2"
NVP_PLUGIN = \
"quantum.plugins.nicira.nicira_nvp_plugin.QuantumPlugin.NvpPluginV2"
CORE_PLUGIN = {
"ovs": OVS_PLUGIN,
"nvp": NVP_PLUGIN
}
OVS_PLUGIN_CONF = \
"/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini"
NVP_PLUGIN_CONF = \
"/etc/quantum/plugins/nicira/nvp.ini"
PLUGIN_CONF = {
"ovs": OVS_PLUGIN_CONF,
"nvp": NVP_PLUGIN_CONF
}
PLUGIN_PKGS = {
"ovs": [
"quantum-plugin-openvswitch",
"quantum-plugin-openvswitch-agent",
"quantum-l3-agent",
"quantum-dhcp-agent"
],
"nvp": [ # No agent required
"quantum-plugin-nicira"
]
}
PLUGIN_AGENT = {
"ovs": [
"quantum-plugin-openvswitch-agent",
]
}
GATEWAY_AGENTS = {
"ovs": [
"quantum-server",
"quantum-l3-agent",
"quantum-dhcp-agent"
]
}
2012-10-26 17:56:42 +02:00
DB_USER = "quantum"
QUANTUM_DB = "quantum"
KEYSTONE_SERVICE = "quantum"
2012-10-26 17:56:42 +02:00
QUANTUM_CONF = "/etc/quantum/quantum.conf"
L3_AGENT_CONF = "/etc/quantum/l3_agent.ini"
QUANTUM_API_CONF = "/etc/quantum/api-paste.ini"
2012-11-05 11:59:27 +00:00
DHCP_AGENT_CONF = "/etc/quantum/dhcp_agent.ini"
2012-10-26 17:56:42 +02:00
2012-11-05 11:59:27 +00:00
RABBIT_USER = "nova"
RABBIT_VHOST = "nova"
2012-10-26 17:56:42 +02:00
EXT_BRIDGE = 'br-ex'
INT_BRIDGE = 'br-int'
2012-10-26 17:56:42 +02:00
def add_bridge(name):
status = subprocess.check_output(["ovs-vsctl", "show"])
if "Bridge {}".format(name) not in status:
utils.juju_log('INFO',
'Creating bridge {}'.format(name))
2012-10-26 17:56:42 +02:00
subprocess.check_call(["ovs-vsctl", "add-br", name])
def del_bridge(name):
status = subprocess.check_output(["ovs-vsctl", "show"])
if "Bridge {}".format(name) in status:
utils.juju_log('INFO',
'Deleting bridge {}'.format(name))
2012-10-26 17:56:42 +02:00
subprocess.check_call(["ovs-vsctl", "del-br", name])
def add_bridge_port(name, port):
status = subprocess.check_output(["ovs-vsctl", "show"])
2012-11-05 11:59:27 +00:00
if ("Bridge {}".format(name) in status and
"Interface \"{}\"".format(port) not in status):
utils.juju_log('INFO',
'Adding port {} to bridge {}'
.format(port, name))
2012-10-26 17:56:42 +02:00
subprocess.check_call(["ovs-vsctl", "add-port", name, port])
subprocess.check_call(["ip", "link", "set", port, "up"])
2012-10-26 17:56:42 +02:00
def del_bridge_port(name, port):
status = subprocess.check_output(["ovs-vsctl", "show"])
if ("Bridge {}".format(name) in status and
"Interface \"{}\"".format(port) in status):
utils.juju_log('INFO',
'Deleting port {} from bridge {}'
.format(port, name))
2012-10-26 17:56:42 +02:00
subprocess.check_call(["ovs-vsctl", "del-port", name, port])
subprocess.check_call(["ip", "link", "set", port, "down"])
def configure_ext_net(username,
password,
tenant,
url,
ext_net_name,
gateway_ip,
default_gateway,
cidr,
start_floating_ip,
end_floating_ip):
ext_net_len = cidr.split('/')[1]
quantum = client.Client(username=username,
password=password,
tenant_name=tenant,
auth_url=url)
networks = quantum.list_networks(name=ext_net_name)
if len(networks['networks']) == 0:
utils.juju_log('INFO',
'Configuring external bridge')
network_msg = {
'network': {
'name': ext_net_name,
'router:external': True
}
}
utils.juju_log('INFO',
'Creating new external network definition: {}'
.format(ext_net_name))
network = quantum.create_network(network_msg)
utils.juju_log('INFO',
'New external network created: {}'
.format(network['network']['id']))
subnet_msg = {
'subnet': {
'name': '{}_subnet'.format(ext_net_name),
'network_id': network['network']['id'],
'enable_dhcp': False,
'gateway_ip': default_gateway,
'cidr': cidr,
'ip_version': 4,
'allocation_pools': [
{
'start': start_floating_ip,
'end': end_floating_ip
}
]
}
}
utils.juju_log('INFO',
'Creating new subnet for {}'
.format(ext_net_name))
subnet = quantum.create_subnet(subnet_msg)
utils.juju_log('INFO',
'New subnet created: {}'
.format(subnet['subnet']['id']))
utils.juju_log('INFO',
'Configuring external bridge connectivity')
subprocess.check_call(['ip', 'addr', 'flush',
'dev', EXT_BRIDGE])
subprocess.check_call(['ip', 'addr', 'add',
'{}/{}'.format(gateway_ip, ext_net_len),
'dev', EXT_BRIDGE])
2012-11-07 12:42:35 +00:00
subprocess.check_call(['ip', 'link', 'set',
EXT_BRIDGE, 'up'])