mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-07-10 22:29:16 +00:00
15 lines
219 B
YAML
15 lines
219 B
YAML
apiVersion: v1
|
|
kind: LimitRange
|
|
metadata:
|
|
name: limits
|
|
namespace: myspace
|
|
spec:
|
|
limits:
|
|
- default:
|
|
cpu: 200m
|
|
memory: 512Mi
|
|
defaultRequest:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
type: Container
|