mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-03-20 01:23:09 -04:00
24 lines
328 B
YAML
24 lines
328 B
YAML
|
|
apiVersion: v1
|
||
|
|
kind: LimitRange
|
||
|
|
metadata:
|
||
|
|
name: mylimits
|
||
|
|
spec:
|
||
|
|
limits:
|
||
|
|
- max:
|
||
|
|
cpu: "2"
|
||
|
|
memory: 1Gi
|
||
|
|
min:
|
||
|
|
cpu: 250m
|
||
|
|
memory: 6Mi
|
||
|
|
type: Pod
|
||
|
|
- default:
|
||
|
|
cpu: 250m
|
||
|
|
memory: 100Mi
|
||
|
|
max:
|
||
|
|
cpu: "2"
|
||
|
|
memory: 1Gi
|
||
|
|
min:
|
||
|
|
cpu: 250m
|
||
|
|
memory: 6Mi
|
||
|
|
type: Container
|