Skip to content

Commit 35df548

Browse files
committed
guest os updates
1 parent 6cf936b commit 35df548

2 files changed

Lines changed: 31 additions & 1 deletion

File tree

source/releasenotes/about.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,31 @@ new features. Some of the highlights include:
5353

5454
The full list of new features can be found in the project release notes at
5555
https://docs.cloudstack.apache.org/en/4.18.0.0/releasenotes/changes.html
56+
57+
.. _guestosids
58+
59+
Possible Issue with Guest OS IDs
60+
================================
61+
62+
It has been noticed during upgrade testing that some environment, where
63+
custom guest OSses where added and mapping for those OSses where added,
64+
problems may occur during upgrade. Part of the mitigation is to make sure
65+
OSses that are newly mapped but should have already been in the guest_os
66+
table are there. Make sure you apply thois before you start the new 4.18
67+
management server.
68+
69+
first check which you miss:
70+
71+
.. parsed-literal::
72+
73+
SELECT * FROM cloud.guest_os WHERE display_name IN (´CentOS 8´, ´Debian GNU/Linux 10 (32-bit)´, ´Debian GNU/Linux 10 (64-bit)´, ´SUSE Linux Enterprise Server 15 (64-bit)´, ´Windows Server 2019 (64-bit)´)
74+
75+
Then apply any of the following lines that you might need.
76+
77+
.. parsed-literal::
78+
79+
INSERT INTO cloud.guest_os (uuid, category_id, display_name, created, is_user_defined) VALUES (UUID(), '1', 'CentOS 8', now(), '0');
80+
INSERT INTO cloud.guest_os (uuid, category_id, display_name, created, is_user_defined) VALUES (UUID(), '2', 'Debian GNU/Linux 10 (32-bit)', now(), '0');
81+
INSERT INTO cloud.guest_os (uuid, category_id, display_name, created, is_user_defined) VALUES (UUID(), '2', 'Debian GNU/Linux 10 (64-bit)', now(), '0');
82+
INSERT INTO cloud.guest_os (uuid, category_id, display_name, created, is_user_defined) VALUES (UUID(), '5', 'SUSE Linux Enterprise Server 15 (64-bit)', now(), '0');
83+
INSERT INTO cloud.guest_os (uuid, category_id, display_name, created, is_user_defined) VALUES (UUID(), '6', 'Windows Server 2019 (64-bit)', now(), '0');

source/releasenotes/compat.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,11 @@ The following hypervisors are no longer be supported in this release due to vend
123123
The following Management Server Operating Systems are no longer supported in this release due to vendor EOL:
124124

125125
- CentOS 6.x
126-
- CentOS 8.x
126+
- CentOS 8.x [1]_
127127
- Ubuntu 14.04
128128
- Ubuntu 16.04
129129

130+
.. [1] in spite of of mostly being phased out some support is remaining in for now. See upgrading for details.
131+
130132
Please see `CloudStack Wiki <https://cwiki.apache.org/confluence/display/CLOUDSTACK/Hypervisor+and+Management+Server+OS+EOL+Dates>`_
131133
for details.

0 commit comments

Comments
 (0)