37df3efaf9
* Documentation LimitRange Policies * Fixing limirange docs issues * Style and grammar * Reviewer wanted * syntax and grammar feedbacks
20 lines
322 B
YAML
20 lines
322 B
YAML
apiVersion: v1
|
|
kind: LimitRange
|
|
metadata:
|
|
name: limit-mem-cpu-per-container
|
|
spec:
|
|
limits:
|
|
- max:
|
|
cpu: "800m"
|
|
memory: "1Gi"
|
|
min:
|
|
cpu: "100m"
|
|
memory: "99Mi"
|
|
default:
|
|
cpu: "700m"
|
|
memory: "900Mi"
|
|
defaultRequest:
|
|
cpu: "110m"
|
|
memory: "111Mi"
|
|
type: Container
|