Merge "Deperecate support for Xen and VMWare"

This commit is contained in:
Zuul 2020-09-08 16:05:46 +00:00 committed by Gerrit Code Review
commit 687cfdc2bb
3 changed files with 19 additions and 0 deletions

View File

@ -1,4 +1,6 @@
# == Class: nova::compute::vmware
#
# DEPRECATED !
# Configure the VMware compute driver for nova.
#
# === Parameters
@ -74,6 +76,9 @@ class nova::compute::vmware(
include nova::deps
warning('The nova::compute::vmware class is deprecated and will be removed \
in a future release. The vmwareapi driver has been deprecated in nova')
nova_config {
'DEFAULT/compute_driver': value => $compute_driver;
'vmware/host_ip': value => $host_ip;

View File

@ -1,5 +1,6 @@
# == Class: nova::compute::xenserver
#
# DEPRECATED !
# Configures nova-compute to manage xen guests
#
# === Parameters:
@ -275,6 +276,9 @@ class nova::compute::xenserver(
include nova::deps
warning('The nova::compute::xenapi class is deprecated and will be removed \
in a future release. The XenAPIDriver driver has been deprecated in nova')
nova_config {
'DEFAULT/compute_driver': value => $compute_driver;
'xenserver/connection_url': value => $connection_url;

View File

@ -0,0 +1,10 @@
---
deprecations:
- |
The ``nova::compute::xenapi`` class has been deprecated and will be removed
in a future release. The XenApiDriver driver has already been deprecated in
nova.
- |
The ``nova::compute::vmware`` class has been deprecated and will be removed
in a future release. The vmwareapi driver has already been deprecated in
nova.