Skip to content

Commit 6a8ce59

Browse files
authored
Merge pull request #90616 from rohennes/TELCODOCS-2127-follow-up
TELCODOCS-2127: Follow up PR to add limitation about real-time kernel
2 parents f9aea14 + b73d3b4 commit 6a8ce59

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

modules/configuring-kernal-page-size.adoc

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Use the `kernelPageSize` specification in a performance profile to configure the
1010

1111
[NOTE]
1212
====
13-
For nodes with an x86_64 or AMD64 architecture, you can only specify `4k` for the `kernelPageSize` specification. For nodes with an AArch64 architecture, you can specify `4k` or `64k` for the `kernelPageSize` specification. The default value is `4k`.
13+
For nodes with an x86_64 or AMD64 architecture, you can only specify `4k` for the `kernelPageSize` specification.
14+
For nodes with an AArch64 architecture, you can specify `4k` or `64k` for the `kernelPageSize` specification. You must disable the realtime kernel before you can use the `64k` option.
15+
The default value is `4k`.
1416
====
1517

1618
.Prerequisites
@@ -33,11 +35,14 @@ metadata:
3335
#...
3436
spec:
3537
kernelPageSize: "64k" <1>
38+
realTimeKernel:
39+
enabled: false <2>
3640
nodeSelector:
37-
node-role.kubernetes.io/worker: "" <2>
41+
node-role.kubernetes.io/worker: "" <3>
3842
----
3943
<1> This example specifies a kernel page size of `64k`. You can only specify `64k` for nodes with an AArch64 architecture. The default value is `4k`.
40-
<2> This example targets nodes with the `worker` role.
44+
<2> You must disable the realtime kernel to use the `64k` kernel page size option.
45+
<3> This example targets nodes with the `worker` role.
4146

4247
. Apply the performance profile to the cluster:
4348
+

0 commit comments

Comments
 (0)