Skip to content

Commit 83df1f2

Browse files
Remove pinning of kernel-abi-stablelists
According to https://access.redhat.com/solutions/444773 With Red Hat Enterprise Linux 7 and 8, the stablelist is valid for the particular major release. This means that once a symbol has been introduced into kABI for a particular major release, it will not be removed, nor will its meaning be changed during that kernel major release complete life cycle. With Red Hat Enterprise Linux 9, each minor release will have a unique stablelist that is valid throughout the minor release lifecycle. For more information on this, please refer to the following knowledgebase article; We are pinning the minor release for the duration of the build. So the stablelist for the minor version will be installed
1 parent 18cf50f commit 83df1f2

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

cli/src/pcluster/resources/imagebuilder/parallelcluster.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,6 @@ phases:
196196
# listing all the packages because wildcard does not work as expected
197197
yum versionlock kernel kernel-core kernel-modules
198198
199-
if [[ ${!OS} == "alinux2" ]] || [[ ${!OS} == "alinux2023" ]] ; then
200-
yum versionlock kernel-abi-whitelists
201-
else
202-
yum versionlock kernel-abi-stablelists
203-
fi
204-
205199
if [[ ${!OS} == "rocky8" ]] || [[ ${!OS} == "rocky9" ]] ; then
206200
yum versionlock rocky-release rocky-repos
207201
elif [[ ${!OS} == "rhel8" ]] || [[ ${!OS} == "rhel9" ]] ; then
@@ -348,12 +342,6 @@ phases:
348342
if [[ ${!PLATFORM} == RHEL ]]; then
349343
yum versionlock delete kernel kernel-core kernel-modules
350344
351-
if [[ ${!OS} == "alinux2" ]] || [[ ${!OS} == "alinux2023" ]] ; then
352-
yum versionlock delete kernel-abi-whitelists
353-
else
354-
yum versionlock delete kernel-abi-stablelists
355-
fi
356-
357345
if [[ ${!OS} == "rocky8" ]] || [[ ${!OS} == "rocky9" ]] ; then
358346
yum versionlock delete rocky-release rocky-repos
359347
elif [[ ${!OS} == "rhel8" ]] || [[ ${!OS} == "rhel9" ]] ; then

cli/src/pcluster/resources/imagebuilder/update_and_reboot.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,6 @@ phases:
200200
# listing all the packages because wildcard does not work as expected
201201
yum versionlock kernel kernel-core kernel-modules
202202
203-
if [[ ${!OS} == "alinux2" ]] || [[ ${!OS} == "alinux2023" ]] ; then
204-
yum versionlock kernel-abi-whitelists
205-
else
206-
yum versionlock kernel-abi-stablelists
207-
fi
208-
209203
if [[ ${!OS} == "rocky8" ]] || [[ ${!OS} == "rocky9" ]] ; then
210204
yum versionlock rocky-release rocky-repos
211205
elif [[ ${!OS} == "rhel8" ]] || [[ ${!OS} == "rhel9" ]] ; then
@@ -301,12 +295,6 @@ phases:
301295
if [[ ${!DISABLE_KERNEL_UPDATE} == true ]] && [[ ${!PLATFORM} == RHEL ]]; then
302296
yum versionlock delete kernel kernel-core kernel-modules
303297
304-
if [[ ${!OS} == "alinux2" ]] || [[ ${!OS} == "alinux2023" ]] ; then
305-
yum versionlock delete kernel-abi-whitelists
306-
else
307-
yum versionlock delete kernel-abi-stablelists
308-
fi
309-
310298
if [[ ${!OS} == "rocky8" ]] || [[ ${!OS} == "rocky9" ]] ; then
311299
yum versionlock delete rocky-release
312300
elif [[ ${!OS} == "rhel8" ]] || [[ ${!OS} == "rhel9" ]] ; then

0 commit comments

Comments
 (0)