Skip to content

Commit 694ba12

Browse files
authored
Merge pull request #63463 from kquinn1204/TELCODOCS-1367
TELCODOCS-1367 Update power saving configurations documentation
2 parents b5172e8 + 4e712c7 commit 694ba12

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

modules/cnf-provisioning-real-time-and-low-latency-workloads.adoc

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -345,20 +345,18 @@ When you configure a node with a power saving configuration, you must configure
345345
By disabling P-states and C-states at the pod level, you can configure high priority workloads for best performance and lowest latency.
346346

347347
.Configuration for high priority workloads
348-
[cols="1,2", options="header"]
349-
|====
350-
|Annotation
351-
|Description
348+
[cols="1,2,3", options="header"]
352349

353-
a|[source,yaml]
354-
----
355-
annotations:
356-
cpu-c-states.crio.io: "disable"
357-
cpu-freq-governor.crio.io: "<governor>"
358-
----
359-
|Provides the best performance for a pod by disabling C-states and specifying the governor type for CPU scaling. The `performance` governor is recommended for high priority workloads.
360-
|====
350+
|===
351+
| Annotation | Possible Values | Description
352+
353+
|`cpu-c-states.crio.io:` a| * `"enable"`
354+
* `"disable"`
355+
* `"max_latency:microseconds"` | This annotation allows you to enable or disable C-states for each CPU. Alternatively, you can also specify a maximum latency in microseconds for the C-states. For example, enable C-states with a maximum latency of 10 microseconds with the setting `cpu-c-states.crio.io`: `"max_latency:10"`. Set the value to `"disable"` to provide the best performance for a pod.
356+
357+
| `cpu-freq-governor.crio.io:` | Any supported `cpufreq governor`. | Sets the `cpufreq` governor for each CPU. The `"performance"` governor is recommended for high priority workloads.
361358

359+
|===
362360

363361
.Prerequisites
364362

@@ -435,7 +433,7 @@ metadata:
435433
annotations:
436434
...
437435
cpu-c-states.crio.io: "disable"
438-
cpu-freq-governor.crio.io: "<governor>"
436+
cpu-freq-governor.crio.io: "performance"
439437
...
440438
...
441439
spec:

0 commit comments

Comments
 (0)