Skip to content

Commit 1ea7eaf

Browse files
committed
Documentation update for pod level resources in 1.34
1 parent 8255f3f commit 1ea7eaf

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

content/en/docs/concepts/configuration/manage-resources-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ resource requests/limits of that type for each container in the Pod.
113113

114114
{{< feature-state feature_gate_name="PodLevelResources" >}}
115115

116-
Starting in Kubernetes 1.32, you can also specify resource requests and limits at
116+
Starting in Kubernetes 1.34, you can also specify resource requests and limits at
117117
the Pod level. At the Pod level, Kubernetes {{< skew currentVersion >}}
118118
only supports resource requests or limits for specific resource types: `cpu` and /
119119
or `memory`. This feature is currently in alpha and with the feature enabled,

content/en/docs/reference/command-line-tools-reference/feature-gates/PodLevelResources.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ stages:
99
- stage: alpha
1010
defaultValue: false
1111
fromVersion: "1.32"
12+
toVersion: "1.33"
13+
- stage: beta
14+
defaultValue: false
15+
fromVersion: "1.34"
1216
---
1317
Enable _Pod level resources_: the ability to specify resource requests and limits
1418
at the Pod level, rather than only for specific containers.

content/en/docs/tasks/configure-pod-container/assign-pod-level-resources.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Assign Pod-level CPU and memory resources
33
content_type: task
44
weight: 30
5-
min-kubernetes-server-version: 1.32
5+
min-kubernetes-server-version: 1.34
66
---
77

88

@@ -43,6 +43,19 @@ The `PodLevelResources` [feature
4343
gate](/docs/reference/command-line-tools-reference/feature-gates/) must be enabled
4444
for your control plane and for all nodes in your cluster.
4545

46+
## Limitations
47+
48+
For Kubernetes {{< skew currentVersion >}}, resizing pod-level resources has the
49+
following limitations:
50+
51+
* **Resource Types:** Only CPU, memory and hugepages resources can be specified at pod-level.
52+
* **Operating System:** Pod-level resources are not supported for Windows
53+
pods.
54+
* **Resource Managers:** The Topology Manager, Memory Manager and CPU Manager do not
55+
align pods and containers based on pod-level resources as these resource managers
56+
don't currently support pod-level resources.
57+
* **In-Place Resize:** In-place resize of pod-level resources is not supported.
58+
4659
<!-- steps -->
4760

4861
## Create a namespace

0 commit comments

Comments
 (0)