Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. apiVersion: v1
  2. kind: LimitRange
  3. metadata:
  4. name: limitrange
  5. namespace: default
  6. spec:
  7. limits:
  8. - type: Pod
  9. min:
  10. cpu: 5m
  11. memory: 5Mi
  12. max:
  13. cpu: 2000m
  14. memory: 5Gi
  15. - type: Container
  16. min:
  17. cpu: 5m
  18. memory: 5Mi
  19. max:
  20. cpu: 1500m
  21. memory: 3Gi
  22. maxLimitRequestRatio:
  23. cpu: 160
  24. memory: 160
  25. - type: PersistentVolumeClaim
  26. min:
  27. storage: 1Gi
  28. max:
  29. storage: 10Gi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement