mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Deprecate proxmox cloud
This commit is contained in:
parent
2cfc5c2fb4
commit
30354137b0
3 changed files with 16 additions and 0 deletions
1
changelog/64224.deprecated.md
Normal file
1
changelog/64224.deprecated.md
Normal file
|
@ -0,0 +1 @@
|
|||
Deprecate all Proxmox cloud modules
|
|
@ -2,6 +2,11 @@
|
|||
Getting Started With Proxmox
|
||||
============================
|
||||
|
||||
.. warning::
|
||||
This cloud provider will be removed from Salt in version 3009.0 in favor of
|
||||
the `saltext.proxmox Salt Extension
|
||||
<https://github.com/salt-extensions/saltext-proxmox>`_
|
||||
|
||||
Proxmox Virtual Environment is a complete server virtualization management solution,
|
||||
based on OpenVZ(in Proxmox up to 3.4)/LXC(from Proxmox 4.0 and up) and full virtualization with KVM.
|
||||
Further information can be found at:
|
||||
|
|
|
@ -21,6 +21,11 @@ Set up the cloud configuration at ``/etc/salt/cloud.providers`` or
|
|||
driver: proxmox
|
||||
verify_ssl: True
|
||||
|
||||
.. warning::
|
||||
This cloud provider will be removed from Salt in version 3009.0 in favor of
|
||||
the `saltext.proxmox Salt Extension
|
||||
<https://github.com/salt-extensions/saltext-proxmox>`_
|
||||
|
||||
:maintainer: Frank Klaassen <frank@cloudright.nl>
|
||||
:depends: requests >= 2.2.1
|
||||
:depends: IPy >= 0.81
|
||||
|
@ -61,6 +66,11 @@ log = logging.getLogger(__name__)
|
|||
|
||||
__virtualname__ = "proxmox"
|
||||
|
||||
__deprecated__ = (
|
||||
3009,
|
||||
"proxmox",
|
||||
"https://github.com/salt-extensions/saltext-proxmox"
|
||||
)
|
||||
|
||||
def __virtual__():
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue