File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
content/en/docs/reference/labels-annotations-taints Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,20 @@ to the name of the namespace. You can't change this label's value.
133
133
This is useful if you want to target a specific namespace with a label
134
134
{{< glossary_tooltip text="selector" term_id="selector" >}}.
135
135
136
+ ### kubernetes.io/limit-ranger
137
+
138
+ Example: ` kubernetes.io/limit-ranger: "LimitRanger plugin set: cpu, memory request for container nginx; cpu, memory limit for container nginx" `
139
+
140
+ Used on: Pod
141
+
142
+ Kubernetes by default doesn't provide any resource limit, that means unless you explicitly define limits,
143
+ your container can consume unlimited CPU and memory.
144
+ You can define a default request or default limit for pods. You do this by creating a LimitRange in the relevant namespace.
145
+ Pods deployed after you define a LimitRange will have these limits applied to them.
146
+ The annotation ` kubernetes.io/limit-ranger ` records that resource defaults were specified for the Pod,
147
+ and they were applied successfully.
148
+ For more details, read about [ LimitRanges] ( /docs/concepts/policy/limit-range ) .
149
+
136
150
### beta.kubernetes.io/arch (deprecated)
137
151
138
152
This label has been deprecated. Please use ` kubernetes.io/arch ` instead.
You can’t perform that action at this time.
0 commit comments