summaryrefslogtreecommitdiff
path: root/nova/virt
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2022-11-07 17:38:48 +0000
committerStephen Finucane <sfinucan@redhat.com>2022-11-07 17:43:52 +0000
commit9baade7ea16d8273c6cd139d6a0c4cdb9de716f7 (patch)
tree76b8225fc3a918fb5d51ab2fa13d1de5648976b3 /nova/virt
parentc97507dfcd57cce9d76670d3b0d48538900c00e9 (diff)
downloadnova-9baade7ea16d8273c6cd139d6a0c4cdb9de716f7.tar.gz
hyperv: Mark driver as experimental
Cloudbase have changed priorities and will no longer be testing the Hyper-V driver. We need to mark this as experimental and consider removing it in the future. Change-Id: I823fbf660948c062581d4e0aaaadc6a6983de2a3 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'nova/virt')
-rw-r--r--nova/virt/hyperv/driver.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/nova/virt/hyperv/driver.py b/nova/virt/hyperv/driver.py
index 1291f975ad..ba18c85cf7 100644
--- a/nova/virt/hyperv/driver.py
+++ b/nova/virt/hyperv/driver.py
@@ -146,6 +146,14 @@ class HyperVDriver(driver.ComputeDriver):
'in Rocky.')
def init_host(self, host):
+ LOG.warning(
+ 'The hyperv driver is not tested by the OpenStack project nor '
+ 'does it have clear maintainer(s) and thus its quality can not be '
+ 'ensured. It should be considered experimental and may be removed '
+ 'in a future release. If you are using the driver in production '
+ 'please let us know via the openstack-discuss mailing list.'
+ )
+
self._serialconsoleops.start_console_handlers()
event_handler = eventhandler.InstanceEventHandler(
state_change_callback=self.emit_event)