File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
content/en/docs/reference/labels-annotations-taints Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -116,16 +116,17 @@ This is useful if you want to target a specific namespace with a label
116
116
117
117
### kubernetes.io/limit-ranger
118
118
119
- Example: ` kubernetes.io/limit-ranger: LimitRanger plugin set: cpu, memory request for container nginx; cpu, memory limit for container nginx `
119
+ Example: ` kubernetes.io/limit-ranger: " LimitRanger plugin set: cpu, memory request for container nginx; cpu, memory limit for container nginx" `
120
120
121
- Used on: Namespace
121
+ Used on: Pod
122
122
123
123
Kubernetes by default doesn't provide any resource limit, that means unless you explicitly define limits,
124
124
your container can consume unlimited CPU and memory.
125
- We can define default limit for pods by creating a LimitRange in the relevant namespace.
126
- Pods deployed after this LimitRange will have these limits applied to them.
127
- The annotation ` limit-ranger ` indicates that limits were requested for the pod and they were applied successfully.
128
- For more details - [ LimitRange] ( /docs/concepts/policy/limit-range )
125
+ You can define a default request or default limit for pods. You do this by creating a LimitRange in the relevant namespace.
126
+ Pods deployed after you define a LimitRange will have these limits applied to them.
127
+ The annotation ` kubernetes.io/limit-ranger ` records that resource defaults were specified for the Pod,
128
+ and they were applied successfully.
129
+ For more details, read about [ LimitRanges] ( /docs/concepts/policy/limit-range ) .
129
130
130
131
### beta.kubernetes.io/arch (deprecated)
131
132
You can’t perform that action at this time.
0 commit comments