Skip to content

Commit c9173a1

Browse files
DaanHooglandDaan Hoogland
andauthored
4.19.3 release notes (#508)
* Xen-like limitations for ISO use * conserve mode in new 4.19 envs upgraded to 4.19.3 * 4.19.3 paragraph * add userdata limitation. * 4.19.3 changes * release * highlights --------- Co-authored-by: Daan Hoogland <[email protected]>
1 parent 820455d commit c9173a1

File tree

4 files changed

+429
-4
lines changed

4 files changed

+429
-4
lines changed

source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = '4.19'
2828
# The full version, including alpha/beta/rc tags
29-
release = '4.19.2.0'
29+
release = '4.19.3.0'
3030

3131
rst_epilog = """
3232
.. include:: /_global.rst

source/releasenotes/about.rst

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,20 @@
1717
What's New in |release|
1818
=======================
1919

20-
Apache CloudStack |release| is a 4.19 LTS minor release with over 170 fixes
20+
Apache CloudStack 4.19.3 is a minor release with a limited number of
21+
assorted fixes.
22+
23+
* Fixes broken console access after upgrade to 4.19.2.0
24+
* Improve listing of Vmware Datacenter VMs for migration to KVM
25+
* Infinite scroll UI component to retrieve more items on reaching end of list
26+
* Prevention of duplication HA jobs and alerts
27+
* Fix SAML2 plugin limitations and SAML multi-account selector in the UI
28+
* Improvements to Linstor
29+
30+
What's New in 4.19.2
31+
====================
32+
33+
Apache CloudStack 4.19.2 is a 4.19 LTS minor release with over 170 fixes
2134
and improvements including prior releases this tallies up to over 480 since
2235
the 4.19.0.0 release. Some of the highlights include:
2336

@@ -71,6 +84,32 @@ https://docs.cloudstack.apache.org/en/4.19.0.0/releasenotes/changes.html
7184

7285
.. _guestosids
7386
87+
Issues with ISO/config drive on Xcpng/Xen
88+
=========================================
89+
90+
A fix was created for Xen like systems to work with config drive. (see
91+
https://github.com/apache/cloudstack/pull/10912) This had been broken
92+
for multiple releases, and passed unnoticed. There are some
93+
limitations to this fix. Noticably:
94+
95+
- When attaching an ISO, the new ISO is attached as the first ISO (the existing configdrive ISO is detached),
96+
- Creating a VM from ISO on a network with ConfigDrive, is not expected to work (untested),
97+
- `userdata` functionality using config drive doesn't work.
98+
99+
When upgrading from a new 4.19 installation
100+
===========================================
101+
102+
Only new installations of 4.19.x will not have conservemode enabled by
103+
default vor VPCs. Upgrades from earlier versions will be alright. In
104+
order to make sure conserve mode is enabled for VPC-tiers, either
105+
create a clone of the default guestnetwork offering with conservemode
106+
enabled or execute the following sql:
107+
108+
::
109+
-- Re-apply VPC: update default network offering for vpc tier to conserve_mode=1 (#8309)
110+
UPDATE `cloud`.`network_offerings` SET conserve_mode=1 WHERE name='DefaultIsolatedNetworkOfferingForVpcNetworks’;
111+
112+
74113
Possible Issue with volume snapshot revert with KVM
75114
===================================================
76115

source/releasenotes/api-changes.rst

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,107 @@
1313
specific language governing permissions and limitations
1414
under the License.
1515
16+
API Changes Introduced in 4.19.3.0
17+
==================================
18+
For the complete list of API commands and params consult the `CloudStack Apidocs`_.
19+
20+
Removed API Commands
21+
--------------------
22+
23+
.. cssclass:: table-striped table-bordered table-hover
24+
25+
+---------------------------------------------+--------------------------------------------------------------------------------+
26+
| Name | Description |
27+
+=============================================+================================================================================+
28+
| ``listVmwareDcHosts`` | Lists the VMs in a Vmware Datacenter |
29+
+---------------------------------------------+--------------------------------------------------------------------------------+
30+
31+
Parameters Changed API Commands
32+
-------------------------------
33+
34+
.. cssclass:: table-striped table-bordered table-hover
35+
36+
+---------------------------------------------+--------------------------------------------------------------------------------+
37+
| Name | Description |
38+
+=============================================+================================================================================+
39+
| ``listVirtualMachines`` | **Request:** |
40+
| | |
41+
| | *New Parameters:* |
42+
| | |
43+
| | - ``userdataid`` (optional) |
44+
| | |
45+
+---------------------------------------------+--------------------------------------------------------------------------------+
46+
| ``listVirtualMachinesMetrics`` | **Request:** |
47+
| | |
48+
| | *New Parameters:* |
49+
| | |
50+
| | - ``userdataid`` (optional) |
51+
| | |
52+
+---------------------------------------------+--------------------------------------------------------------------------------+
53+
| ``listVmsForImport`` | **Response:** |
54+
| | |
55+
| | *New Parameters:* |
56+
| | |
57+
| | - ``bootmode`` |
58+
| | - ``boottype`` |
59+
| | |
60+
+---------------------------------------------+--------------------------------------------------------------------------------+
61+
| ``listVmwareDcVms`` | **Request:** |
62+
| | |
63+
| | *New Parameters:* |
64+
| | |
65+
| | - ``hostname`` (optional) |
66+
| | - ``instancename`` (optional) |
67+
| | |
68+
| | *Removed Parameters:* |
69+
| | |
70+
| | - ``batchsize`` |
71+
| | - ``host`` |
72+
| | - ``token`` |
73+
| | |
74+
| | **Response:** |
75+
| | |
76+
| | *New Parameters:* |
77+
| | |
78+
| | - ``bootmode`` |
79+
| | - ``boottype`` |
80+
| | - ``clusterid`` |
81+
| | - ``clustername`` |
82+
| | - ``cpucorepersocket`` |
83+
| | - ``cpunumber`` |
84+
| | - ``cpuspeed`` |
85+
| | - ``hostid`` |
86+
| | - ``hostname`` |
87+
| | - ``memory`` |
88+
| | - ``name`` |
89+
| | - ``osdisplayname`` |
90+
| | - ``osid`` |
91+
| | - ``powerstate`` |
92+
| | - ``disk(*)`` |
93+
| | - ``nic(*)`` |
94+
| | |
95+
| | *Removed Parameters:* |
96+
| | |
97+
| | - ``token`` |
98+
| | |
99+
+---------------------------------------------+--------------------------------------------------------------------------------+
100+
| ``listUnmanagedInstances`` | **Response:** |
101+
| | |
102+
| | *New Parameters:* |
103+
| | |
104+
| | - ``bootmode`` |
105+
| | - ``boottype`` |
106+
| | |
107+
+---------------------------------------------+--------------------------------------------------------------------------------+
108+
| ``listVnfAppliances`` | **Request:** |
109+
| | |
110+
| | *New Parameters:* |
111+
| | |
112+
| | - ``userdataid`` (optional) |
113+
| | |
114+
+---------------------------------------------+--------------------------------------------------------------------------------+
115+
116+
16117
API Changes Introduced in 4.19.2.0
17118
==================================
18119
For the complete list of API commands and params consult the `CloudStack Apidocs`_.

0 commit comments

Comments
 (0)