~ubuntu-branches/ubuntu/vivid/neutron/vivid-updates

« back to all changes in this revision

Viewing changes to neutron/plugins/ml2/drivers/brocade/fi_ni/mechanism_brocade_fi_ni.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-03-30 11:17:19 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20150330111719-h0gx7233p4jkkgfh
Tags: 1:2015.1~b3-0ubuntu1
* New upstream milestone release:
  - d/control: Align version requirements with upstream.
  - d/control: Add new dependency on oslo-log.
  - d/p/*: Rebase.
  - d/control,d/neutron-plugin-hyperv*: Dropped, decomposed into
    separate project upstream.
  - d/control,d/neutron-plugin-openflow*: Dropped, decomposed into
    separate project upstream.
  - d/neutron-common.install: Add neutron-rootwrap-daemon and 
    neutron-keepalived-state-change binaries.
  - d/rules: Ignore neutron-hyperv-agent when installing; only for Windows.
  - d/neutron-plugin-cisco.install: Drop neutron-cisco-cfg-agent as
    decomposed into separate project upstream.
  - d/neutron-plugin-vmware.install: Drop neutron-check-nsx-config and
    neutron-nsx-manage as decomposed into separate project upstream.
  - d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent.
* d/pydist-overrides: Add overrides for oslo packages.
* d/control: Fixup type in package description (LP: #1263539).
* d/p/fixup-driver-test-execution.patch: Cherry pick fix from upstream VCS
  to support unit test exection in out-of-tree vendor drivers.
* d/neutron-common.postinst: Allow general access to /etc/neutron but limit
  access to root/neutron to /etc/neutron/neutron.conf to support execution
  of unit tests in decomposed vendor drivers.
* d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent
  package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2015 Brocade Communications Systems, Inc.
 
2
# All rights reserved.
 
3
#
 
4
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
#    not use this file except in compliance with the License. You may obtain
 
6
#    a copy of the License at
 
7
#
 
8
#         http://www.apache.org/licenses/LICENSE-2.0
 
9
#
 
10
#    Unless required by applicable law or agreed to in writing, software
 
11
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
#    License for the specific language governing permissions and limitations
 
14
#    under the License.
 
15
 
 
16
"""Implementation of Brocade ML2 Mechanism driver for ICX and MLX."""
 
17
 
 
18
from networking_brocade.mlx.ml2.fi_ni import mechanism_brocade_fi_ni
 
19
from oslo_config import cfg
 
20
 
 
21
SWITCHES = [
 
22
    cfg.StrOpt(
 
23
        'switch_names',
 
24
        default='',
 
25
        help=('Switches connected to the compute nodes'))]
 
26
 
 
27
ML2_BROCADE = [cfg.StrOpt('address', default='',
 
28
                          help=('The address of the host to SSH to')),
 
29
               cfg.StrOpt('username', default='admin',
 
30
                          help=('The SSH username to use')),
 
31
               cfg.StrOpt('password', default='password', secret=True,
 
32
                          help=('The SSH password to use')),
 
33
               cfg.StrOpt('physical_networks', default='',
 
34
                          help=('Allowed physical networks')),
 
35
               cfg.StrOpt('ports', default='',
 
36
                          help=('Ports')),
 
37
               cfg.StrOpt('transport', default='SSH',
 
38
                          choices=('SSH', 'TELNET'),
 
39
                          help=('Protocol used to communicate with Switch')),
 
40
               cfg.StrOpt('ostype', default='NI', choices=('NI', 'FI'),
 
41
                          help=('OS type of the device.')),
 
42
               ]
 
43
cfg.CONF.register_opts(SWITCHES, 'ml2_brocade_fi_ni')
 
44
 
 
45
 
 
46
class BrocadeFiNiMechanism(mechanism_brocade_fi_ni.BrocadeFiNiMechanism):
 
47
 
 
48
    def __init__(self):
 
49
        self._switch_names = cfg.CONF.ml2_brocade_fi_ni.switch_names
 
50
        switches = [x.strip() for x in self._switch_names.split(',')]
 
51
        for switch in switches:
 
52
            cfg.CONF.register_opts(ML2_BROCADE, switch)
 
53
        super(BrocadeFiNiMechanism, self).__init__()