Skip to content

Commit

Permalink
Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud i…
Browse files Browse the repository at this point in the history
…nto trunk
  • Loading branch information
Kami committed Jun 20, 2024
2 parents d51b382 + 52ad4a2 commit 213088d
Show file tree
Hide file tree
Showing 11 changed files with 2,632 additions and 240 deletions.
2 changes: 1 addition & 1 deletion docs/compute/_supported_methods_main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Provider list nodes create node reboot node destroy node s
`InternetSolutions`_ yes yes yes yes yes yes yes yes yes
`Kamatera`_ yes yes yes yes yes yes yes yes yes
`KTUCloud`_ yes yes yes yes no no yes yes yes
`kubevirt`_ yes yes yes yes yes yes yes yes no
`kubevirt`_ yes yes yes yes yes yes yes yes yes
`Libvirt`_ yes no yes yes yes yes no no no
`Linode`_ yes yes yes yes yes yes yes yes no
`Maxihost`_ yes yes yes yes yes yes yes yes no
Expand Down
32 changes: 32 additions & 0 deletions docs/upgrade_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,38 @@ Libcloud 3.9.0
If your code is using those arguments / passing them to the `create_node()`
method it needs to be updated and those arguments removed.

* [KubeVirt] Changes to the `create_node()` method:

- The `ports` argument has been renamed to `ex_ports`.
- The `ex_disks` argument has been redefined to support all volume types.

The deprecated `ex_disks` format, which only supports `PersistentVolumeClaim`,
is as follows:

.. sourcecode:: python

ex_disks=[{"bus": "", "device": "", "disk_type": "", "name": "", "claim_name": "", "size": "", "storage_class_name": "", "volume_mode": "", "access_mode": ""}]

The new format is:

.. sourcecode:: python

ex_disks=[{"bus": "", "device": "", "disk_type": "", "name": "", "volume_spec": {...}}]

Here, `volume_spec` is the `disk_type` specific settings, which aligns with the
KubeVirt user guide on disks and volumes
(https://kubevirt.io/user-guide/virtual_machines/disks_and_volumes).

For example, for PVC:

.. sourcecode:: python

ex_disks=[{ ..., "volume_spec": {{"claim_name": "", "size": "", "storage_class_name": "", "volume_mode": "", "access_mode": ""} }]

If your code uses these arguments or passes them to the `create_node()`
method, it will need to be updated accordingly.


Libcloud 3.8.0
--------------

Expand Down
Loading

0 comments on commit 213088d

Please sign in to comment.