Removes remaining Hyper-V plugin

The Hyper-V Neutron plugin was fully decomposed from neutron
and moved into the networking-hyperv project.

The only thing that remained was a debtcollector move for the
HyperVSecurityGroupsDriver, in order to prevent deployments from
breaking when upgrading to Mitaka or Newton from older versions.

Co-Authored-By: Gary Kotton <gkotton@vmware.com>

Change-Id: Iddc14fc4c52ba1a851e79bcd4cf4f09c63b52312
This commit is contained in:
Claudiu Belu 2016-09-28 10:20:27 +03:00
parent cae38fb392
commit 03be4044f8
4 changed files with 13 additions and 34 deletions

View File

@ -1,34 +0,0 @@
#Copyright 2014 Cloudbase Solutions SRL
#All Rights Reserved.
#
# 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 debtcollector import moves
from hyperv.neutron import security_groups_driver as sg_driver
from oslo_log import log as logging
from neutron._i18n import _LW
LOG = logging.getLogger(__name__)
# TODO(claudiub): Remove this module at the beginning of the O cycle.
new_driver = 'hyperv.neutron.security_groups_driver.HyperVSecurityGroupsDriver'
LOG.warning(_LW("You are using the deprecated firewall driver: "
"%(deprecated)s.Use the recommended driver %(new)s instead."),
{'deprecated': '%s.HyperVSecurityGroupsDriver' % __name__,
'new': new_driver})
HyperVSecurityGroupsDriver = moves.moved_class(
sg_driver.HyperVSecurityGroupsDriver,
'HyperVSecurityGroupsDriver', __name__)

View File

@ -0,0 +1,13 @@
---
prelude: >
Hyper-V Neutron Agent has been fully decomposed from Neutron. Therefore, the
`neutron.plugins.hyperv.agent.security_groups_driver.HyperVSecurityGroupsDriver`
firewall driver has been deleted.
Update the `neutron_hyperv_agent.conf` / `neutron_ovs_agent.conf` files on the
Hyper-V nodes to use `hyperv.neutron.security_groups_driver.HyperVSecurityGroupsDriver`,
which is the networking_hyperv security groups driver.
upgrade:
- Update the `neutron_hyperv_agent.conf` / `neutron_ovs_agent.conf` files on the
Hyper-V nodes to use `hyperv.neutron.security_groups_driver.HyperVSecurityGroupsDriver`,
which is the networking_hyperv security groups driver.